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...
Thursday, August 11, 2011
Tuesday, June 28, 2011
Testing mail locally
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

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...