Lock web application by domain
-
Hello I want to lock a web application (asp.net) by domain. If the user try to install the website on another domain that was specific by the owner so the website will not work. Thanks for your consideration
Mohammad Khansari
-
Hello I want to lock a web application (asp.net) by domain. If the user try to install the website on another domain that was specific by the owner so the website will not work. Thanks for your consideration
Mohammad Khansari
Pass every request through a common HttpHandler, and check the domain there. :laugh: You can also have this logic inside your installer. :thumbsup:
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
Pass every request through a common HttpHandler, and check the domain there. :laugh: You can also have this logic inside your installer. :thumbsup:
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
thanks how to protect that http handler (or httpModule)? It's very simple to unlock that! :) Now what to do? :-D
Mohammad Khansari
-
thanks how to protect that http handler (or httpModule)? It's very simple to unlock that! :) Now what to do? :-D
Mohammad Khansari
are you going to give him the code?? If not, place the logic in the BasePage, and inherit everypage from your basepage. :cool:
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.