Click here to Skip to main content
15,905,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am developing a web site in asp.net and sql server database. i want the users will type in bengali language in text boxes and store the data in database.
I will be glad if give me a proper way to use Bangla Font in ASP .NET project
Posted

1 solution

By using a cascading style sheet (css) and setting the font-family accordingly.
Similar to
CSS
* {
    font-size: 1em;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
}

But I do not know the family of "Bangla Font".
 
Share this answer
 
Comments
Sumon562 24-May-13 22:25pm    
Thank you Mr. Bernhard Hiller. Is it all? If so I am really happy
Sumon562 24-May-13 23:02pm    
I tried but it does not work
Bernhard Hiller 27-May-13 2:30am    
By the way, BBC World Service Bengali pages (http://www.bbc.co.uk/bengali/) do not use a specialised font:
{font-family:verdana,helvetica,arial,sans-serif}
Do you use some custom encoding insetad of UTF-8? Get rid rid of that out-dated things!
Sumon562 27-May-13 4:45am    
Actually I am new in programming. I do not know the use of UTF-8 and do not know its functionality. Can you describe me. Thank you advance.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900