Today I was working on sorting a dictionary
Wednesday, December 15, 2010
Force full postback in Update panel
Typically update panel requires only partial post back. But occasionaly there is a requirement to post back entire page after a control fires server side event. This can be easily achived using
PostBackTrigger in Triggers section of the update panel. I had a requirement of using GridView control inside the update panel. The GridView should trigger only partial postback on sort and delete commands, but full page post back on edit and add copy commands. I could do this using ScriptManager.RegisterPostBackControl() method as described at http://www.brybot.ca/archives/update-panel-gridview-and-non-asynchronous-postbacks-in-aspnet-20. Thanks a lot Bryan.
PostBackTrigger in Triggers section of the update panel. I had a requirement of using GridView control inside the update panel. The GridView should trigger only partial postback on sort and delete commands, but full page post back on edit and add copy commands. I could do this using ScriptManager.RegisterPostBackControl() method as described at http://www.brybot.ca/archives/update-panel-gridview-and-non-asynchronous-postbacks-in-aspnet-20. Thanks a lot Bryan.
Subscribe to:
Posts (Atom)
Regex obfuscate email
Use this code in C# to obfuscate email using regex // Online C# Editor for free // Write, Edit and Run your C# code using C# Online Compile...
-
Responsive design http://webdesignerwall.com/tutorials/5-useful-css-tricks-for-responsive-design http://palantir.net/blog/responsive-de...
-
After cloning a git repo of dot net framework website and trying to run it all I could see was this error Turns out the fix was to simply e...
-
To install SQLServer module in powershell we need to add the nuget package provider first with command: Install-PackageProvider -Name NuGet ...