Thursday, May 17, 2007

Encrypt URL ASP.NET

We had to encrypt our url with sensitive querystring information, so we took a look at the world wide web and we found this:

http://www.webpronews.com/expertarticles/2007/01/25/aspnet-httpmodule-for-query-string-encryption

Great, just add a httpModule and it's fixed! Without changing any of your code!

Wednesday, May 9, 2007

Postback in ASP.NET page opend with showModalDialog()

Problem today: we created a ASP.NET page, opened it in a Model Dialog using javascript (showModalDialog()), and when the page did a postback, the stuff crashed.

Found the solution on this site: http://www.geekpedia.com/Question23_Using-showModalDialog()-with-an-ASP.NET-page-that-does-PostBack-opens-another-window.html

Postback in ASP.NET page opend with showModalDialog()

Problem today: we created a ASP.NET page, opened it in a Model Dialog using javascript (showModalDialog()), and when the page did a postback, the stuff crashed.

Found the solution on this site: http://www.geekpedia.com/Question23_Using-showModalDialog()-with-an-ASP.NET-page-that-does-PostBack-opens-another-window.html

place in the tags..