in this codeing working but not showing the tamil fonts.
i need to tamil fonts letters.because i want to website developeing.
pelease the give me a extract coding...
<%@ Page Language="C#" UICulture="ta" Culture="ta-IN" AutoEventWireup="true" CodeFile="tamil.aspx.cs" Inherits="tamil" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
.tamilTextBox
{
font-family:TAMIL FONT NAME;
direction:rtl; /* rtl = Right-to-left , language writing direction*/
}
</style>
<%--<link href="StyleSheet.css" />--%>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" CssClass="tamilTextBox" ></asp:TextBox>
</div>
</form>
</body>
</html>
code behind:
protected void Page_Load(object sender, EventArgs e)
{
TextBox1.Attributes.Add("class", "tamilTextBox");
}