Search

You searched for the word(s): userid:794322

Matching Posts

  • Re: autopostback not work

    Thanks all you guys efforts, I had do reboot my computer, and this problem disappeared, I still don't know what's wrong and it is really weird. I will try those solutions next time I get in the same problem. thanks
    Posted to ASP.NET AJAX UI (Forum) by eagal on 1/7/2009
  • autopostback not work

    Hi guys, I had a checkbox in an update panel, and I set the autopostback to True of the checkbox. I found that the postback not fired and the HTML code of the checkbox like this: <input id="ctl00_webContentPlaceHolder_STRAT" type="checkbox" name="ctl00$webContentPlaceHolder_STRAT" onclick="javascript:setTimeout('__doPostBack(\'ctl00$webContentPlaceHolder_STRAT\',\'\')', 0)" /><label for="ctl00_webContentPlaceHolder_STRAT">
    Posted to ASP.NET AJAX UI (Forum) by eagal on 1/5/2009
    Filed under: autopostback IIS
  • Re: checkbox.Checked for dynamic control not working on postback

    I think in your case, you should create this controls in the Page_preInit or Page_init event before the view state being applied to all controls
    Posted to Web Forms (Forum) by eagal on 4/30/2008
  • Re: Problem with dynamic Tablerows containing controls

    http://forums.asp.net/t/1249961.aspx : dynamic control problem I thought this link may help
    Posted to Web Forms (Forum) by eagal on 4/30/2008
  • Re: Machine won't shutdown

    I came over the problem by adding Protected Overloads Overrides Sub WndProc( ByRef msg As Message) If msg.Msg = WM_QUERYENDSESSION Then 'clean up End If MyBase .WndProc(msg) End Sub
    Posted to Getting Started (Forum) by eagal on 4/25/2008
  • Machine won't shutdown

    Hi Experts I have an Application running on client side, it has a "backgroundworker" component to call server and upload data. Most of the time, this Application will start when the machine booted now when user want to shutdown his machine, this application will not respond to the request and I got USER32.Dll error in event log, which said the reboot or shutdown failed. can anyone give some idea what cause this problem? I try to dispose the "backgroundworker" in MyApplication_Shutdown
    Posted to Getting Started (Forum) by eagal on 4/25/2008
  • Re: Control

    I should mark this post for future reference. Google Map
    Posted to Web Forms (Forum) by eagal on 4/22/2008
  • Re: How to determine if zero row is selected?

    Hi Let's say you get a dataTable from the SqlDataSource control, then you can use if (datatable.rows.count()==0) //determine it has data or not I think you can do it at the formview.databonding event
    Posted to Web Forms (Forum) by eagal on 4/22/2008
  • Re: dynamic control problem

    I have experienced the same situation, what I do is to recreate the control in Page_init event, and the control ID must the same. by this way, after the page_load event, the control's event whill be called otherwise it will never be called because the framework wouldn't know you have that control in your page. I wonder is there any better way or not? thanks
    Posted to Web Forms (Forum) by eagal on 4/18/2008
  • Re: Problem in Confirm Message Box

    this may answer my question too. Thanks guys!
    Posted to Web Forms (Forum) by eagal on 4/17/2008
Page 1 of 3 (21 items) 1 2 3 Next >