Hai! Thanx for the help provided. I know this chr function, but I want a different one.
My project is online test for statistical subject. The user will enter the questions in the textbox. THe question will contain symbols like Mu, pi, alpha, beta etc. The user is completely new to the system. He may not know all the ascii characters. It should be user friendly. How can I do this? Thanx in advance Seetha --- In [email protected], Balaji vishnubhotla <[EMAIL PROTECTED]> wrote: > 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=12hdmqa0h/M=362335.6886445.7839731.1510227/D=groups/S=1705006764:TM/Y=YAHOO/EXP=1123488542/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/
