Click here to Skip to main content
15,914,419 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: library suite Pin
J4amieC18-Apr-06 5:33
J4amieC18-Apr-06 5:33 
AnswerRe: library suite Pin
Mike Ellison18-Apr-06 6:22
Mike Ellison18-Apr-06 6:22 
QuestionQUERY: AJAX + MDI = Closest thing to WinApp Pin
dhruba.bandopadhyay18-Apr-06 5:09
dhruba.bandopadhyay18-Apr-06 5:09 
AnswerRe: QUERY: AJAX + MDI = Closest thing to WinApp Pin
Mike Ellison18-Apr-06 6:26
Mike Ellison18-Apr-06 6:26 
GeneralRe: QUERY: AJAX + MDI = Closest thing to WinApp Pin
dhruba.bandopadhyay18-Apr-06 23:12
dhruba.bandopadhyay18-Apr-06 23:12 
QuestionASP.NET Label Properties Programmatically Pin
cybersurferdev18-Apr-06 4:55
cybersurferdev18-Apr-06 4:55 
AnswerRe: ASP.NET Label Properties Programmatically Pin
dabs18-Apr-06 5:10
dabs18-Apr-06 5:10 
AnswerRe: ASP.NET Label Properties Programmatically Pin
Mike Ellison18-Apr-06 6:13
Mike Ellison18-Apr-06 6:13 
This would set the label's font weight to bold and color to green:
<asp:Label id="lbl1" runat="server"
              Font-Bold="true"
              ForeColor="green" />

If you needed more control over the font weight, you could use CSS and assign a style class to the label:
<asp:Label id="lbl1" runat="server"
              CssClass="myLabelClass" />

To set color & weight programmatically:
void Page_Load()
{
  lbl1.Font.Bold = true;
  lbl1.ForeColor = System.Drawing.Color.Green;
}

GeneralRe: ASP.NET Label Properties Programmatically Pin
cybersurferdev18-Apr-06 19:20
cybersurferdev18-Apr-06 19:20 
QuestionCannot access the asp.net pages from the web server Pin
Sunny H18-Apr-06 4:43
Sunny H18-Apr-06 4:43 
AnswerRe: Cannot access the asp.net pages from the web server Pin
VenkataRamana.Gali18-Apr-06 5:52
VenkataRamana.Gali18-Apr-06 5:52 
AnswerRe: Cannot access the asp.net pages from the web server Pin
Stanciu Vlad18-Apr-06 7:03
Stanciu Vlad18-Apr-06 7:03 
QuestionHow do I use a windows control in my web app if it references SHDovVw.dll? Pin
coder62618-Apr-06 4:29
coder62618-Apr-06 4:29 
QuestionASP.Net 2.0 Modal window - Master/Child page Pin
Grapes-R-Fun18-Apr-06 4:21
Grapes-R-Fun18-Apr-06 4:21 
AnswerRe: ASP.Net 2.0 Modal window - Master/Child page Pin
minhpc_bk18-Apr-06 5:47
minhpc_bk18-Apr-06 5:47 
GeneralRe: ASP.Net 2.0 Modal window - Master/Child page Pin
Grapes-R-Fun18-Apr-06 6:45
Grapes-R-Fun18-Apr-06 6:45 
GeneralRe: ASP.Net 2.0 Modal window - Master/Child page Pin
minhpc_bk18-Apr-06 16:09
minhpc_bk18-Apr-06 16:09 
QuestionSetting Datagrid column width dynamically Pin
Veeves18-Apr-06 3:19
Veeves18-Apr-06 3:19 
AnswerRe: Setting Datagrid column width dynamically Pin
NeverHeardOfMe18-Apr-06 3:42
NeverHeardOfMe18-Apr-06 3:42 
GeneralRe: Setting Datagrid column width dynamically Pin
Veeves18-Apr-06 4:55
Veeves18-Apr-06 4:55 
AnswerRe: Setting Datagrid column width dynamically Pin
VaibhavJ19-Apr-06 5:26
VaibhavJ19-Apr-06 5:26 
QuestionASP.NET Pin
kuwl_mark18-Apr-06 2:53
kuwl_mark18-Apr-06 2:53 
AnswerRe: ASP.NET Pin
minhpc_bk18-Apr-06 6:05
minhpc_bk18-Apr-06 6:05 
QuestionForms Authentication and deploying Pin
dabs18-Apr-06 2:08
dabs18-Apr-06 2:08 
AnswerRe: Forms Authentication and deploying Pin
Mike Ellison18-Apr-06 6:05
Mike Ellison18-Apr-06 6:05 

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.