Dear All: I have a web application which contains the following: - bin - web - default.aspx - index.aspx - index.lb What I am trying to do is the following: I am trying to keep track of users, by first of all, when the user types my domain name, the first page
to be shown for him/her will be "index.aspx", then what I am doing is I am doing a HttpContext.Current.Server.Transfer("index.lb"), then inside "index.lb" what I am doing is a redirect to "web/default.aspx". why I am doing this, because, "lb" is a new extension,
I mapped it to aspnet_isapi.dll in the IIS, what I am doing is having an HttpHandler for the extension ".lb" so that every time the web page with that extension is opened, which means a new user arrived, I would like to get the IP and date of entrance and
store them in a database. Well, when I do the transfer to index.lb, I am stuck in that index.lb and without being redirected to web/default.aspx. Can anybody help ? Am I doing something wrong ? Can it be done in a better way and still using an HttpHandler
? thanks a lot.
Member
20 Points
341 Posts
New Extension
Mar 10, 2005 12:53 PM|SomeNewTricks2|LINK
None
0 Points
60 Posts
Re: New Extension
Mar 11, 2005 07:34 AM|Breakfast|LINK
Contributor
4057 Points
8649 Posts
MVP
Re: New Extension
Mar 12, 2005 07:55 PM|haidar_bilal|LINK
Professional ASP.NET 3.5 Security, Membership, and Role Management with C# and VB
Contributor
3294 Points
3302 Posts
Re: New Extension
Mar 19, 2005 10:41 PM|stiletto|LINK