Posted by: jwalin on: February 11, 2009
Microsoft has redesigned version 2.0 of the Data Access Block to take advantage of new ADO.NET 2.0 features. You can download the Enterprise Library Data Access Application Block from MSDN.
1] Using Application Data Block (Change in Web.Config)
To use the Data Access Block successfully, you will need to go through the steps listed below:
Add a reference [...]
Posted by: jwalin on: December 2, 2008
http://microsoft.apress.com/asptodayarchive/72141/using-the-calendar-control
Posted by: jwalin on: December 2, 2008
Thank you for andreacol.net/blog
In this article I want to show 3 different ways to deal with long running tasks in Asp.net.
If such a task must be initiated from an Asp.net web page, the thread that is serving the page request is bound to the task until it completes or a timeout occurs. Asp.net and .net framework [...]
Posted by: jwalin on: September 19, 2008
http://aspalliance.com/1680_Building_ASPNET_Web_Server_Controls_using_XML_and_XSLT.all
Posted by: jwalin on: July 21, 2008
http://codebetter.com/blogs/brendan.tompkins/archive/2006/06/27/146875.aspx
http://mgrzyb.blogspot.com/search?updated-min=2007-01-01T00%3A00%3A00%2B01%3A00&updated-max=2008-01-01T00%3A00%3A00%2B01%3A00&max-results=1
http://davestechshop.net/archive/2006/09/21/FormsAuthCookiesAndSubdomainNames2.aspx
Posted by: jwalin on: July 8, 2008
http://encosia.com/2007/10/24/are-you-making-these-3-common-aspnet-ajax-mistakes/
Posted by: jwalin on: May 23, 2008
http://www.sqlnetframework.com/Articles/GoogleDataPager.aspx
Posted by: jwalin on: April 7, 2008
protected
void Button1_PreRender(object sender, EventArgs e)
{
string doubleSubmitScript = String.Format(@”if (typeof(Page_ClientValidate) == ‘function’) {{
if (!Page_ClientValidate()) {{ return false; }}
}}
this.value = ‘Please wait…’;
this.disabled = true;
{0};”
, ClientScript.GetPostBackEventReference(BeginButton, String.Empty));
Button1.OnClientClick = doubleSubmitScript;
}
Posted by: jwalin on: March 26, 2008
Than’s to Miron
The Update Panel response contain the new html for the specific location that needs to be update and the complete new ViewState for the whole page. So, one more thing we can to optimize the UpdatePanel is to compress the ViewState before it been sent to the client. We don’t need to do [...]
Posted by: jwalin on: March 19, 2008
Don’t run production ASP.NET Applications with debug=”true” enabled
One of the things you want to avoid when deploying an ASP.NET application into production is to accidentally (or deliberately) leave the <compilation debug=”true”/> switch on within the application’s web.config file.
Doing so causes a number of non-optimal things to happen including:
1) The compilation of ASP.NET pages takes longer [...]