If you want a new browser tab to open (without pop warnings) and you want to do it server side, the following is the best approach I have seen and works great!
Instead of response.redirect in your button click event, …
Month: October 2012
ASP.Net – How to use expression binding on client side for appSettings, ConnectionStrings, and resource files.
To bind your label control on your aspx page with a value in your web config or resource file, you can use expression binding. The value is retrieved from the named element within the <%$ … %> tags:
Get data …
ASP.Net – How to add a adRotator with a timer event to auto refresh an ad at regular intervals
The following client side code demonstrates placing an adRotator control onto an AJAX UpdatePanel. The ad would randomly change whenever the browser is refreshed. To simulate this automatically, a Timer control is added with an interval of 5 seconds. Every …