Hi Seetha,

If you want to insert these Charater Codes into Database then use
Script function Chr()

For ex.

Use Chr(181) --- For Mu
      Chr(223) ---- For Beta

Like wise find out the exact Character Code for the required charatcer
and use it as parameter for Chr() Function.

To list out all the Character codes use this Code & execute:
--------------------------------------------------------------------------------------
<Table>

<%
for i = 1 to 255
Response.Write "<TR><TD>" & i & "</TD><TD>" & Chr(i) & "</TD></TR>"
Next
%>

</Table>
--------------------------------------------------------------------------------------------
To insert these values into text box do like this:

<input type=text id=txt1 name=txt1 value="<%=Chr(223)%>">



All the Best
-- 
Balaji V


------------------------ Yahoo! Groups Sponsor --------------------~--> 
<font face=arial size=-1><a 
href="http://us.ard.yahoo.com/SIG=12hhcmn94/M=362335.6886445.7839731.1510227/D=groups/S=1705006764:TM/Y=YAHOO/EXP=1123239273/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/";>In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!</a>.</font>
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to