Tag Archives: ASP .NET

asp.net 4.0 deployment on IIS 7.0

aspnet_regiis –i um asp4.0 auf iis7 zum Laufen zu kriegen

WCF RIA Services V1.0: ASP.NET Client

WCF RIA Services have been available for some time now. Such a service can easily be used in combination with a Silverlight client. On the contrary it’s more difficult to create an ASP.NET client based on WCF RIA Services. This blog post discusses the necessary steps to create such a solution.

How to create a new session in ASP.NET programmatically

If you want to create a new session (open a new window in a new session), without disturbing/loosing the other one, you will have to use the SessionIDManager. Here is a short example (this will only work with <sessionState cookieless=”true” /> in the web.config): SessionIDManager manager = new SessionIDManager(); string newId = manager.CreateSessionID(HttpContext.Current); string urlOrig [...]