Search

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

Matching Posts

  • Re: Asynchronous post back for migrated application

    First DropDownList1 is in inside the UdpatePanel so dont use the AsyncPostBackTrigger for it Check web.config if the AJAX is installed properly Installing ASP.NET AJAX Configuring ASP.NET AJAX
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/24/2009
  • Re: Unspecified error when server generates a long response

    You can handle the AJAX error as below Customizing Error Handling for UpdatePanel Controls You can show Progress bar for long request http://mattberseth.com/blog/2007/06/aspnet_ajax_rendering_a_gmaill.html http://www.dotnetkicks.com/ajax/Rendering_a_Gmail_Loading_Indicator_over_a_Specific_ASP_NET_Control http://dotnettogo.com/blogs/emad/archive/2007/08/04/ASP.NET-AJAX_3A00_-Rendering-a-Gmail_2D00_like-_2700_Loading_2700_-Indicator.aspx http://blog.devarchive.net/2008/01/displaying-progress-bar-for
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/24/2009
  • Re: Update Panel Issue

    http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/ http://blog.turlov.com/2009/02/how-to-improve-aspnet-updatepanel.html There are three keys to improve the performance of update panels: 1)ViewState: you need to use less viewstate as possible since it's sent and recieved in every postback or Async postback 2)Html/Controls: less html/controls and javascript inside that update panel,the more faster your update panel will behave. 3) DON'T USE MANY UPDATE PANELS Tip: Setting
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/24/2009
  • Re: Hover menu as Tooltip control

    check these out: http://weblogs.asp.net/cjdevos/archive/2008/03/29/asp-net-ajax-tooltipextender.aspx http://aspalliance.com/1686_Creating_a_Custom_Tooltip_Ajax_Extender_Control.all if javascript works for you, check this out: http://www.walterzorn.com/tooltip/tooltip_e.htm
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/24/2009
  • Re: UpdateProgressBar issues with Panels.

    You can show the UpdateProgress loading bar while the content gets rendered http://encosia.com/2007/10/03/easy-incremental-status-updates-for-long-requests/ Here is an advanced sample http://mattberseth.com/blog/2007/06/aspnet_ajax_rendering_a_gmaill.html http://www.dotnetkicks.com/ajax/Rendering_a_Gmail_Loading_Indicator_over_a_Specific_ASP_NET_Control http://dotnettogo.com/blogs/emad/archive/2007/08/04/ASP.NET-AJAX_3A00_-Rendering-a-Gmail_2D00_like-_2700_Loading_2700_-Indicator.aspx http://blog
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/24/2009
  • Re: adding a popup from server side in content page

    http://delroger.wordpress.com/2008/08/06/creating-javascript-alerts-in-aspnet-with-updatepanel-or-without/ http://sivasakki.blogspot.com/2007/05/javascript-alert-from-updatepanel.html http://mattberseth.com/blog/2008/09/dynamic_data_customizing_the_d.html
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/23/2009
  • Re: IsPostBack and IsCallback

    Page.IsCallBack It is getting a value indicating whether the page request is the result of a call back. Its a special postback, so a round-trip always occurs; however, unlike the classic postback, the script callback doesn't redraw the whole page. ViewState is not updated during a callback, it is for postback. Page.IsPostBack Checks whether the Page is accessing the server for the first time or not. Unlike the IsCallBack, the ViewState is updated http://forums.asp.net/t/1175353.aspx
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/23/2009
  • Re: Modal Popup During DataGrid update

    http://mattberseth.com/blog/modalpopupextender/
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/23/2009
  • Re: focus not set to textbox under a ajax tabcontainer

    Sets the browser focus to the specified control http://www.asp.net/AJAX/Documentation/Live/mref/O_T_System_Web_UI_ScriptManager_SetFocus.aspx You can use the following code to set the focus: ScriptManager sm = ScriptManager.GetCurrent( this ); sm.SetFocus(myTextBox); To set focus and select text of a you have to use the following: ScriptManager.RegisterStartupScript( this , this .GetType(), "selectAndFocus" , "$get('" + myTextBox.ClientID + "').focus();$get('"
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/23/2009
  • Re: Update Progress bar problem Very Urgent

    You can use to show text/image in beginRequest Event and hide it in endRequest Event of ScriptManager Here is an advanced sample http://mattberseth.com/blog/2007/06/aspnet_ajax_rendering_a_gmaill.html http://www.dotnetkicks.com/ajax/Rendering_a_Gmail_Loading_Indicator_over_a_Specific_ASP_NET_Control http://dotnettogo.com/blogs/emad/archive/2007/08/04/ASP.NET-AJAX_3A00_-Rendering-a-Gmail_2D00_like-_2700_Loading_2700_-Indicator.aspx http://blog.devarchive.net/2008/01/displaying-progress-bar-for-long
    Posted to ASP.NET AJAX UI (Forum) by chetan.sarode on 11/23/2009
Page 1 of 371 (3710 items) 1 2 3 4 5 Next > ... Last »