0
votes
How can I get a date after 10 days ? in asp.net
Dim next10days As Date = Date.Now.AddDays(10)
Although, technically, it should be Date.Today, not Date.Now, because Now also include …
4
votes
How to synchronize lifetime of forms authentication cookie and Asp.Net Session?
I've heard this question many times, my answer is usually "why would you want this?". One does not require the other and their expiration times should be determined using different criteria.
…
1
vote
When exactly does Application_End get called and how can I manually cause this?
Like Nick said, "An application pool will recycle …
0
votes
Render HTML as an Image
I haven't tried to myself, but you should be able to render HTML into an image by using the WebBrowser control and the DrawToBitmap() method inherited from the base Control class.
UPDATE: I …
