Rounded Corners TextBox In Asp.Net Or HTML
In this tutorial i will let you know how can you create a rounded corner textbox in asp.net or HTML.You can achieve this by applying a simple CSS for textbox.
Design View of Page:-
01 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="textbox_riunded corner.aspx.cs" Inherits="textbox_riunded_corner" %> |
05 | < style type = "text/css" > |
08 | border-top-left-radius:5px; |
09 | border-top-right-radius:5px; |
10 | border-bottom-left-radius:5px; |
11 | border-bottom-right-radius:5px; |
14 | < title >Rounded Corners In Textbox</ title > |
17 | < form id = "form1" runat = "server" > |
19 | < asp:TextBox ID = "TextBox1" runat = "server" CssClass = "Roundedcorner" ></ asp:TextBox > |
I hope this will works for you. Enjoy!!!