vote up 0 vote down star

hi

I have to include math symbols in my asp.net

so whatever the symbols it may be sigma , integral , pie etc..or any

how to write or display the Symbols in asp.net it should be UI so when the user click the

particular Symbols it will display in the textbox or any editor control..

If anyone have idea let me know...?

thanks.

flag
1  
A symbol for "pie", awesome. – Artelius Nov 7 at 4:25
Have a look at stackoverflow.com/questions/1671943/… – Artelius Nov 7 at 4:27
I have Checked That's not resolve the issue , even the Posted member was not getting the Right answer. – troy Nov 7 at 6:16
@Artelius Unicode 25d4 ◔ – Pete Kirkham Nov 7 at 10:05
What does is this Unicode 25d4 – troy Nov 7 at 10:55
show 3 more comments

1 Answer

vote up 1 vote down

Since you are using ASP.NET you can use the HTML character entity references to display symbols.

http://en.wikipedia.org/wiki/List%5Fof%5FXML%5Fand%5FHTML%5Fcharacter%5Fentity%5Freferences

Updated

You can just put the special characters into your html code. Prefix the items from the reference with "&#" and suffix with ";"

∫ dy K(x,y)φ(y) = λφ(x)

yields

∫ dy K(x,y)φ(y) = λφ(x)

link|flag
Hi Let me know how to use this in asp.net ? How shall i display this let give some sample code. ? – troy Nov 7 at 9:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.