Browse by Tags
All Tags »
snippet (RSS)
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...
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...
English: As I'm having a few english readers I'm going to add english post subjects whenever I'm posting interesting and helpful code-snippets :) The topic says it all, it shows you how to add a timeout to the WebClient class. ...und jetzt wieder auf
Read More...
Diese Frage stellt sich wohl jeder wenn man Linq-to-SQL in einer Web-Anwendung verwenden möchte. Microsoft sagt dazu folgendes: "A DataContext shoud be use per unit of work". Das heißt soviel wie, man sollte einen DataContext instanzieren
Read More...