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

ASP.NET

 
AnswerRe: Whats error in the bold line Pin
Amol-11123-Jun-09 21:34
Amol-11123-Jun-09 21:34 
AnswerRe: Whats error in the bold line Pin
Christian Graus23-Jun-09 21:36
protectorChristian Graus23-Jun-09 21:36 
QuestionASP.NET Gridview control does not fire rowcommand event inside an ajax toolkit's update panel Pin
Inderjeet Kaur23-Jun-09 20:39
Inderjeet Kaur23-Jun-09 20:39 
QuestionInteresting problem when opening a PDF file inside iFrame element in an aspx file Pin
Renukapadhamanaban23-Jun-09 20:20
Renukapadhamanaban23-Jun-09 20:20 
GeneralRe: Interesting problem when opening a PDF file inside iFrame element in an aspx file Pin
Renukapadhamanaban24-Jun-09 16:21
Renukapadhamanaban24-Jun-09 16:21 
QuestionJavaScript-IE6 [modified] Pin
Elango N23-Jun-09 19:29
Elango N23-Jun-09 19:29 
AnswerRe: JavaScript-IE6 Pin
Chetan.visodiya24-Jun-09 1:22
Chetan.visodiya24-Jun-09 1:22 
Questionproblem with threads in asp.net Pin
prasadbuddhika23-Jun-09 19:28
prasadbuddhika23-Jun-09 19:28 
i'm trying a simple incremant in asp.net using a thread, in the debug mode the values are correct and assigned to the label1 properly. but at the end th label value is not changed as it showed in the debugging mode.



public delegate void mydel(int y) ;
    public mydel m;

       protected void Button1_Click(object sender, EventArgs e)
    {
        if (IsPostBack)
        {
            Thread thrd = new Thread(new ThreadStart(dothis));
            thrd.Start();
        }
    }

    private void dothis()
    {
        for (int x = 0; x < 5; x++)
        {
            m= new mydel(update);
            m.Invoke(x);
        }

    }

    public void update(int a)
    {
        this.Label1.Text = a.ToString();
    }


what might be the problem.
AnswerRe: problem with threads in asp.net Pin
Christian Graus23-Jun-09 21:14
protectorChristian Graus23-Jun-09 21:14 
Questiondatatable.select("dintinct columnName"); Pin
S.Aijaz23-Jun-09 19:21
S.Aijaz23-Jun-09 19:21 
AnswerRe: datatable.select("dintinct columnName"); Pin
padmanabhan N23-Jun-09 19:47
padmanabhan N23-Jun-09 19:47 
GeneralRe: datatable.select("dintinct columnName"); Pin
S.Aijaz23-Jun-09 19:57
S.Aijaz23-Jun-09 19:57 
AnswerRe: datatable.select("dintinct columnName"); Pin
Baran M23-Jun-09 20:31
Baran M23-Jun-09 20:31 
AnswerRe: datatable.select("dintinct columnName"); Pin
himanshu256124-Jun-09 0:34
himanshu256124-Jun-09 0:34 
GeneralRe: datatable.select("dintinct columnName"); Pin
S.Aijaz24-Jun-09 0:56
S.Aijaz24-Jun-09 0:56 
GeneralRe: datatable.select("dintinct columnName"); Pin
himanshu256124-Jun-09 1:11
himanshu256124-Jun-09 1:11 
GeneralRe: datatable.select("dintinct columnName"); Pin
S.Aijaz24-Jun-09 3:58
S.Aijaz24-Jun-09 3:58 
AnswerRe: datatable.select("dintinct columnName"); Pin
Kaushal Arora24-Jun-09 3:59
Kaushal Arora24-Jun-09 3:59 
Questionvb .net Code Pin
Ganesh Great23-Jun-09 19:12
Ganesh Great23-Jun-09 19:12 
AnswerRe: vb .net Code Pin
Abhijit Jana23-Jun-09 19:32
professionalAbhijit Jana23-Jun-09 19:32 
QuestionHelp on Grid View Pin
KhandelwalA23-Jun-09 18:44
KhandelwalA23-Jun-09 18:44 
AnswerRe: Help on Grid View Pin
padmanabhan N23-Jun-09 18:53
padmanabhan N23-Jun-09 18:53 
AnswerRe: Help on Grid View Pin
Amol-11123-Jun-09 19:27
Amol-11123-Jun-09 19:27 
Questioncustomized reports with calendars and dropdown list Pin
Flavia A23-Jun-09 18:38
Flavia A23-Jun-09 18:38 
AnswerRe: customized reports with calendars and dropdown list Pin
Amol-11123-Jun-09 20:59
Amol-11123-Jun-09 20:59 

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.