Welcome to AspAdvice Sign in | Join | Help

manik.net

alles über c# / microsoft asp.net und viel, viel mehr

October 2008 - Posts

Getting the control that caused the postback / Das Control ermitteln, welches den Postback ausgelöst hat
protected Control GetPostBackControl() { System.Collections.Specialized. NameValueCollection postCollection = System.Web. HttpContext .Current.Request.Form; string controlID = postCollection.Get( "__EVENTTARGET" ); if ( string .IsNullOrEmpty(controlID) Read More...
Firefox + Invalid viewstate / Viewstate corrupted fix!
Welcher ASP Entwickler kennt den Fehler nicht? Der Grund liegt an einem speziellen Caching das nur der Firefox anwendet. Mehr zu dem Thema gibt's hier: http://developer.mozilla.org/en/Using_Firefox_1.5_caching Die Lösung gibt's allerdings Read More...