By tag: Postback
0
kicks
Access JavaScript variables on PostBack using ASP.NET Code
In this article, we will see how to pass javascript values on postback and then access these values in your server side code. This article will primarily showcase two techniques of doing so. One using Hidden variables and the other using the __doPostBack() javascript method.
0
kicks
Why does the TextBox render postback scripts and a Button dosen't?
It seems that the asp.net controls have different behaviors for the same code logic... In the current days, where javascript is a big part of a web application, some of this behavior logic seems difficult to accept.
0
kicks
Prevent postback in FF invoked by textarea enter click (ASP.NET 2.0)
Solution for bug in MS WebResource.axd javascript. The problem is that when a multiline textbox is put inside panel with DefaultButton set, pressing the enter button while editing text in the textbox submits the form instead of going to new line.
0
kicks
Do postbacks with parameters in JavaScript
How to cause a postback with Javascript on any element, and pass through parameters
0
kicks
Maintain scroll position after postbacks
This feature is an absolute must-have on large web pages built for postback scenarios. The beauty of it is the simplicity and the low impact.
0
kicks
Cross Page Postback in ASP.Net 2.0
In ASP.Net 2.0, cross-page post backs allow posting to a different web page, resulting in more intuitive, structured and maintainable code. In this article, we will explore the various options and settings for the cross page postback mechanism.