Categories
Asp, Asp.net

Rounded Corners TextBox In Asp.Net Or HTML

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" %>
02<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
04<head runat="server">
05<style type="text/css">
06.Roundedcorner
07{
08border-top-left-radius:5px;
09border-top-right-radius:5px;
10border-bottom-left-radius:5px;
11border-bottom-right-radius:5px;
12}
13</style>
14<title>Rounded Corners In Textbox</title>
15</head>
16<body>
17<form id="form1" runat="server">
18<div>
19<asp:TextBox ID="TextBox1" runat="server" CssClass="Roundedcorner"></asp:TextBox>
20</div>
21</form>
22</body>
23</html>


 

I hope this will works for you. Enjoy!!!