Wednesday, June 24, 2009

Adding attributes to the body tag when using Master Pages

http://www.velocityreviews.com/forums/t372762-master-pages-javascript-and-body-tag.html
http://forums.asp.net/t/1186749.aspx

Wednesday, June 17, 2009

HttpUtility.HtmlEncode

converts br tag to <br/>

A potentially dangerous Request.Form value was detected from the client A potentially dangerous Request.Form value was detected from the client

http://www.cryer.co.uk/brian/mswinswdev/ms_vbnet_server_error_potentially_dangerous.htm
http://support.sightmax.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=45
http://forums.asp.net/p/1235144/2239950.aspx
http://www.asp.net/learn/whitepapers/request-validation/

Monday, June 8, 2009

Order by doesn't work with Union sql server 2000

http://www.sqlteam.com/article/union-selecting-from-multiple-tables-in-one-statement

select col1 from tblA order by col2 desc
union
select col2 from tblB order by col2 desc

-It gives error.

Workaround is:

select col1 from tblA
union
select col2 from tblB order by col2 desc