Thursday, August 11, 2011

SQL Cascading Query

11:12 PM Posted by Unknown No comments
with MessageList as ( select MessageID_,ParentID_ from Messages_ where ParentID_='3529' union all select m.MessageID_,m.ParentID_ from Messages_ m inner join MessageList ml on m.ParentID_= ml.MessageID_ ) SELECT distinct(MessageID_) FROM MessageList group by Message...

Tuesday, June 28, 2011

Testing mail locally

10:54 PM Posted by Unknown 1 comment
1. Create a temp folder. http://blog.divergencehosting.com/2010/01/27/testing-email-from-localhost-with-aspnet-without-smtp-server/2. The mails sent will be available at that temp fold...

Saturday, April 16, 2011

JavaScript in UpdatePanel

11:13 PM Posted by Unknown , , No comments
Javascript events don't work after the UpdatePanel does a partial page update. An UpdatePanel completely replaces the contents of the update panel on an update. This means that those events you subscribed to are no longer subscribed because there are new elements in that update panel. Soln1: Re-subscribe...