Is there a way to detect what browser the request is made in the HttpModule?
Thanks.
From stackoverflow
-
public class TestModule : IHttpModule { public void Dispose() { throw new NotImplementedException(); } public void Init(HttpApplication context) { context.Request.Browser....; } }
0 comments:
Post a Comment