abt page load
-
thnks brother when i click to button .. then its going to debug right .. so i m not using ispostback so first start debug in pageload and its debuging into button event right .. after the debuging going to finished page.. my doubt is there any posible to debuging from button event then again its debug into pageload
try and try untill reach success..
When you click the button, page load will be called first and then the button_click event will be called, after this the debugging will end. What you are trying to do?
Coding C# ExciteTemplate
-
When you click the button, page load will be called first and then the button_click event will be called, after this the debugging will end. What you are trying to do?
Coding C# ExciteTemplate
When you click the button, page load will be called first and then the button_click event will be called, after this the debugging will end. yes .but i need from button_event to next called to pageload ..how can i do this one.. i dont want to use refresh.
try and try untill reach success..
-
When you click the button, page load will be called first and then the button_click event will be called, after this the debugging will end. yes .but i need from button_event to next called to pageload ..how can i do this one.. i dont want to use refresh.
try and try untill reach success..
May I know what kindaa success you want to achieve? Explain the scenario.
Coding C# ExciteTemplate
-
May I know what kindaa success you want to achieve? Explain the scenario.
Coding C# ExciteTemplate
i took one gridview panel ..and thats all coding wrote in ascx page .. so now i m sending some data in button event .. then its goes to db.. so again i want to bind the gridview which is there inascx page.
try and try untill reach success..
-
i took one gridview panel ..and thats all coding wrote in ascx page .. so now i m sending some data in button event .. then its goes to db.. so again i want to bind the gridview which is there inascx page.
try and try untill reach success..
Why dont you call the grid databind code in button event after data is saved?
Coding C# ExciteTemplate
-
Why dont you call the grid databind code in button event after data is saved?
Coding C# ExciteTemplate
i m binding gridview in ascx page.. not in button page..
try and try untill reach success..
-
i m binding gridview in ascx page.. not in button page..
try and try untill reach success..
ascx means you have user control in page, why dont you recreate that control in button event?
Coding C# ExciteTemplate
-
i m binding gridview in ascx page.. not in button page..
try and try untill reach success..
Expose a method on the user control to allow binding rather than binding when the control loads.
-
Expose a method on the user control to allow binding rather than binding when the control loads.
means how can i expose it..
try and try untill reach success..
-
means how can i expose it..
try and try untill reach success..
Make the method in user control which binds the grid as public and then you can access it from page like UserControlName.Method(); HTH
Coding C# ExciteTemplate