hi, can we apply custom font to asp:textbox object using custom font? i dont find it working with my sample
CSS
HTMLCode:.font_malyalam1 { font-family: Jwala; font-size:12px; }
unless i do theseCode:<asp:TextBox ID="TextBox2" runat="server" Height="185px" Width="375px" TextMode="MultiLine" CssClass="font_malyalam1" ></asp:TextBox>
Code:Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load TextBox2.Font.Name = "Jwala" End Sub





Reply With Quote