tags:

views:

269

answers:

1

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.

+1  A: 

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)

OG
Hi Let me know how to use this in asp.net ? How shall i display this let give some sample code. ?
troy