Click here to Skip to main content
15,887,336 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Clear Textbox without writing server side code EnableViewState=false? Pin
Sandesh M Patil4-May-10 23:13
Sandesh M Patil4-May-10 23:13 
AnswerRe: Clear Textbox without writing server side code EnableViewState=false? Pin
Ankur\m/5-May-10 2:14
professionalAnkur\m/5-May-10 2:14 
QuestionDisplay Date Validation as Checkbox in GridView Row Pin
ziopino704-May-10 3:21
ziopino704-May-10 3:21 
AnswerRe: Display Date Validation as Checkbox in GridView Row Pin
Paramhans Dubey4-May-10 3:27
professionalParamhans Dubey4-May-10 3:27 
GeneralRe: Display Date Validation as Checkbox in GridView Row Pin
ziopino705-May-10 6:47
ziopino705-May-10 6:47 
Questionwant to assign css to multiple textboxes Pin
Sandesh M Patil4-May-10 2:56
Sandesh M Patil4-May-10 2:56 
AnswerRe: want to assign css to multiple textboxes Pin
Peace ON4-May-10 3:00
Peace ON4-May-10 3:00 
GeneralRe: want to assign css to multiple textboxes Pin
Sandesh M Patil4-May-10 3:19
Sandesh M Patil4-May-10 3:19 
WebPage.aspx

<table cellpadding="2" cellspacing="0" border="0" width="50%">
    <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td colspan="2" class="UserHeading">Enter User Information</td>
    </tr>
    <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td><label id="lblUserName" runat="server">User Name</label></td>
        <td><asp:TextBox ID="txtUserName" runat="server"></asp:TextBox></td>
    </tr>
     <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td><label id="lblPassword" runat="server">Password :</label></td>
        <td><asp:TextBox ID="txtPassword" TextMode="Password" runat="server"></asp:TextBox></td>
    </tr>
     <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td><label id="Label1" runat="server">Email Id :</label></td>
        <td><asp:TextBox ID="txtEmailId" runat="server"></asp:TextBox></td>
    </tr>
     <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td><label id="Label2" runat="server">Address :</label></td>
        <td><asp:TextBox ID="txtAddress" runat="server" TextMode="MultiLine"></asp:TextBox></td>
    </tr>
     <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td><label id="Label3" runat="server">Contact No :</label></td>
        <td><asp:TextBox ID="txtContactNo" runat="server"></asp:TextBox></td>
    </tr>
    <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td colspan="2"><asp:Button ID="btnSave" runat="server" Text="Save" /></td>
    </tr>
</table>


stylesheet.css

.UserHeading
{
	font-family:Calibri;
	font-size:20px;
	font-weight:bold;
} 
TextBox
{
	font-family:Verdana;
	font:30px;
	font-weight:bold;
}
label
{
	font-family:Verdana;
	font:11px;
	font-weight:normal;
}


label style applies to all labels. Similarly i want to apply to <asp:textboxes>

Please Suggest......... Smile | :)
GeneralRe: want to assign css to multiple textboxes Pin
Subrahmanyam@19854-May-10 3:26
Subrahmanyam@19854-May-10 3:26 
GeneralRe: want to assign css to multiple textboxes Pin
Sandesh M Patil4-May-10 3:34
Sandesh M Patil4-May-10 3:34 
GeneralRe: want to assign css to multiple textboxes Pin
Brij4-May-10 3:40
mentorBrij4-May-10 3:40 
GeneralRe: want to assign css to multiple textboxes Pin
Sandesh M Patil4-May-10 3:44
Sandesh M Patil4-May-10 3:44 
GeneralRe: want to assign css to multiple textboxes Pin
Brij4-May-10 4:25
mentorBrij4-May-10 4:25 
Questionajax controls along with user controls in same page Pin
Bikash Shrestha From Nepal4-May-10 0:31
Bikash Shrestha From Nepal4-May-10 0:31 
AnswerRe: ajax controls along with user controls in same page Pin
michaelschmitt4-May-10 0:55
michaelschmitt4-May-10 0:55 
QuestionProblem with multiselect drop down Pin
test-094-May-10 0:12
test-094-May-10 0:12 
AnswerRe: Problem with multiselect drop down Pin
Abhishek Sur4-May-10 0:24
professionalAbhishek Sur4-May-10 0:24 
GeneralRe: Problem with multiselect drop down Pin
test-094-May-10 0:47
test-094-May-10 0:47 
AnswerRe: Problem with multiselect drop down Pin
Sandesh M Patil4-May-10 1:01
Sandesh M Patil4-May-10 1:01 
QuestionConstant timer in asp.net Pin
lvq6843-May-10 23:59
lvq6843-May-10 23:59 
AnswerRe: Constant timer in asp.net Pin
Sandesh M Patil4-May-10 0:02
Sandesh M Patil4-May-10 0:02 
AnswerRe: Constant timer in asp.net Pin
The solution4-May-10 2:44
The solution4-May-10 2:44 
AnswerRe: Constant timer in asp.net Pin
Brij4-May-10 0:06
mentorBrij4-May-10 0:06 
GeneralRe: Constant timer in asp.net Pin
lvq6844-May-10 0:18
lvq6844-May-10 0:18 
GeneralRe: Constant timer in asp.net Pin
Brij4-May-10 0:30
mentorBrij4-May-10 0:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.