Showing posts with label Ajax. Show all posts
Showing posts with label Ajax. Show all posts

Wednesday, May 30, 2007

Hint ..improving permformance with asp.net ajax toolkit

 If you are using the asp.net ajax toolkit or anything like my codeplex project that depends on it you should look into your web.config for the configuration below and uncomment it

<scriptResourceHandler enableCompression="true" enableCaching="true" />

Believe in me..it makes a huge difference.





Powered by ScribeFire.

Friday, March 23, 2007

Asp.net Validators ,Ajax and Ext

Here is a hint to call asp.net validators before performing an operation (probaly ajax) you can use the client-side script function Page_ClientValidate().This function is automatically included when you put validators in your page.

Sample usage:



if(!Page_ClientValidate()){

return;

}

//here is the operation to be performed;

/>



powered by performancing firefox