iSparc Blog: 2008 iSparc Blog: 2008

Friday, June 20, 2008

CSS Rounded Corners Tool

Found this pretty cool CSS Rounded Corner Tool.

Great CSS Rounded Corners Tool
http://www.neuroticweb.com/recursos/css-rounded-box/index.php?color=FF6666&fondo=00FF66
http://www.neuroticweb.com/recursos/css-rounded-box/index.php?color=FFFFFF&fondo=4D6489

Friday, May 2, 2008

Friday, February 29, 2008

ASP.NET Server.Transfer Vs Response.Direct

In essence:

Response.Redirect simply sends a message back to the browser, telling it to move to another page.

whereas

Server.Transfer conserves server resources. Instead of telling the browser to redirect, it simply changes the "focus" on the Web server and transfers the request. This means you don't get as many HTTP requests coming through, which should ease the pressure on your Web server and make your application run faster.

Keep in mind though, because the "transfer" process can work on only those sites running on the server, you can't use Server.Transfer to send the user to an external site. Only Response.Redirect can do that!!

Wednesday, January 30, 2008