-
Situation: UpdatePanel1: Contains a gridview and a button. When the button is clicked the SqlBulkCopy command in de Data Access Layer (DAL) starts copying about 2 million rows. The SqlBulkCopy.NotifyAfter is set on 100000 and the associated event (SqlRowsCopied) bubbles nicely up from the DAL to the...
-
Hi,
I've created a custom web control which uses an embedded javascript file.
I have overridden OnPreRender method to register the javascript where I am checking if the control is within an update panel, I use
ScriptManager.RegisterClientScriptResource method, otherwise I use the normal
Page.ClientScript...
-
I have tried every which way I have found to set focus to a text box in the activetabchanged event. I have a text box inside an updatepanel that is nested in an AJAX TabPanel. The following code executes as it should, I just dont see my text box getting focus. Select Case Me .SupportDeskTabs.ActiveTab...
-
I have a custom server control that works perfectly. However, when I stick it inside an UpdatePanel the UpdatePanel does full postbacks. Does my customer Server Control need to do anything special to be "UpdatePanel aware"? If I stick my control outside of the UpdatePanel and then wire in the...
-
I am using a Wizard control in an UpdatePanel. Some of the Wizard Steps have UpdatePanels nested inside. Both the outer and inner UpdatePanels have their own Trigger collection. All of the events fire as intended. However, the triggers for the outer UpdatePanel do not set off the UpdateProgress control...
-
Hi, I'm using the ScriptManager.AddHistoryPoint method and Navigate event. I use it for paging of a grid (the paging is done using an UpdatePanel). My problem is that when the user moves to another page, clicking back only hits the last history point and the others disappear. Is there a workaround...
-
When creating a server control, you really should add the ScriptManager control within the control itself. Adding the ScriptManager to the page should be the responsibility of the developer using the control. Think of this like a runat="server" form, you need this for most server controls,...
-
I just wanted to share my solution to a problem I've been having that I was wrestling with for the last two days... I had a UserControl inside an UpdatePanel inside a Page that was encapsulated by a Master Page, and that user control was embedded in a client side jquery tab control (whew!). When...
-
I'm trying to dynamically create UpdatePanel objects and their contents. My question is - is it possible to NOT recreate the whole structure on each postback of a button from inside of an UpdatePanel? I have this loop: DateTime dt = new DateTime(2009, 05, 11, 9, 0, 0); for (int i = 0; i < 4; i...
-
Hi at all, i have web application ajax Out updatepanel i have simply tag anchor, <a href="http://www.microsodt.com">link microsoft</a> when i click on link i receive message errror, that is Property or method don't support Why ? that is simply tag anchor Inside application all...