Click here to Skip to main content
15,890,579 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionOnClientClick requires 2 Clicks how to solve this? Pin
rprateek11-Feb-09 15:41
rprateek11-Feb-09 15:41 
Questionhow to assign text to label in l_DataBinding(Object sender, EventArgs e) method Pin
jmk_cooljack11-Feb-09 10:20
jmk_cooljack11-Feb-09 10:20 
AnswerRe: how to assign text to label in l_DataBinding(Object sender, EventArgs e) method Pin
Christian Graus11-Feb-09 11:27
protectorChristian Graus11-Feb-09 11:27 
GeneralRe: how to assign text to label in l_DataBinding(Object sender, EventArgs e) method Pin
jmk_cooljack11-Feb-09 12:17
jmk_cooljack11-Feb-09 12:17 
GeneralRe: how to assign text to label in l_DataBinding(Object sender, EventArgs e) method Pin
Christian Graus11-Feb-09 14:55
protectorChristian Graus11-Feb-09 14:55 
GeneralRe: how to assign text to label in l_DataBinding(Object sender, EventArgs e) method Pin
jmk_cooljack11-Feb-09 19:03
jmk_cooljack11-Feb-09 19:03 
GeneralRe: how to assign text to label in l_DataBinding(Object sender, EventArgs e) method Pin
jmk_cooljack11-Feb-09 12:28
jmk_cooljack11-Feb-09 12:28 
QuestionSetting CultureInfo for thread Pin
Mokai11-Feb-09 10:02
Mokai11-Feb-09 10:02 
I am learning about globalization using ASP.NET. Can someone explain what are the differences in behavior by setting culture info in thread vs. in page? Followings are 2 examples:

Setting Culture in Thread
protected override void InitializeCulture()
{
    string culture = Request.Form["DropDownList1"];
    if (culture==null)
    {
        culture = "en-US";
    }

    Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(culture);
    Thread.CurrentThread.CurrentUICulture = new CultureInfo(culture);

    base.InitializeCulture();
}

Setting Culture in Page
protected override void InitializeCulture()
{
    string culture = Request.Form["DropDownList1"];
    if (culture==null)
    {
        culture = "en-US";
    }

    UICulture = culture;
    Culture = culture;

    base.InitializeCulture();
}

AnswerRe: Setting CultureInfo for thread Pin
ABitSmart11-Feb-09 16:59
ABitSmart11-Feb-09 16:59 
GeneralRe: Setting CultureInfo for thread Pin
Mokai12-Feb-09 7:35
Mokai12-Feb-09 7:35 
GeneralRe: Setting CultureInfo for thread Pin
ABitSmart12-Feb-09 14:45
ABitSmart12-Feb-09 14:45 
QuestionRegisterClientScriptBlock - message.htm din pop up at all..... Pin
edwin_nice11-Feb-09 7:01
edwin_nice11-Feb-09 7:01 
AnswerRe: RegisterClientScriptBlock - message.htm din pop up at all..... Pin
Christian Graus11-Feb-09 11:32
protectorChristian Graus11-Feb-09 11:32 
GeneralRe: RegisterClientScriptBlock - message.htm din pop up at all..... Pin
edwin_nice11-Feb-09 14:37
edwin_nice11-Feb-09 14:37 
GeneralRe: RegisterClientScriptBlock - message.htm din pop up at all..... Pin
Christian Graus11-Feb-09 14:56
protectorChristian Graus11-Feb-09 14:56 
GeneralRe: RegisterClientScriptBlock - message.htm din pop up at all..... [modified] Pin
edwin_nice12-Feb-09 6:00
edwin_nice12-Feb-09 6:00 
Questiontextbox control Pin
radupopescu77711-Feb-09 3:44
radupopescu77711-Feb-09 3:44 
AnswerRe: textbox control Pin
ABitSmart11-Feb-09 4:13
ABitSmart11-Feb-09 4:13 
GeneralRe: textbox control Pin
radupopescu77711-Feb-09 4:15
radupopescu77711-Feb-09 4:15 
GeneralRe: textbox control Pin
ABitSmart11-Feb-09 4:26
ABitSmart11-Feb-09 4:26 
AnswerRe: textbox control Pin
ByteBlocks11-Feb-09 4:19
ByteBlocks11-Feb-09 4:19 
QuestionSender Pin
ellllllllie11-Feb-09 1:35
ellllllllie11-Feb-09 1:35 
AnswerRe: Sender Pin
Paddy Boyd11-Feb-09 1:55
Paddy Boyd11-Feb-09 1:55 
AnswerRe: Sender Pin
Satish3211-Feb-09 2:01
Satish3211-Feb-09 2:01 
QuestionUse of web template. Pin
Laxminarayan Behera11-Feb-09 1:23
Laxminarayan Behera11-Feb-09 1:23 

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.