A lot of reasons, check following list for detail:
http://blogs.msdn.com/b/johan/archive/2007/05/16/common-reasons-why-your-application-pool-may-unexpectedly-recycle.aspx
Monday, March 18, 2013
Thursday, March 14, 2013
How to update tables by inner join in SQL
update L
set l.Text ='something'
from [aTable] a
inner join [bTable] b on a.Id = b.aId
where a.id = 1
set l.Text ='something'
from [aTable] a
inner join [bTable] b on a.Id = b.aId
where a.id = 1
Tuesday, March 12, 2013
How to read cookie value in ASP.NET MVC razor view?
@Request.Cookies["cookiename"].Value
@Response.Cookies["cookiename"].Value
@Response.Cookies["cookiename"].Value
Monday, March 11, 2013
ASP.NET Web API REST Security Basic
http://www.jamiekurtz.com/2013/01/14/asp-net-web-api-security-basics/
Subscribe to:
Posts (Atom)