Run Web Application Under Evaluation Period.
-
Hello, This is Vikash Gohil. I have developed a web Application and Now I want to add functionality of evaluation period in my web app, so that I can give my application as Demo to customers. Can anyone please suggest me some functionality for this or some guidelines how to achieve this. Any information would be greatly appreciated. Thanks in Advance, Awaiting a reply soon.
-
Hello, This is Vikash Gohil. I have developed a web Application and Now I want to add functionality of evaluation period in my web app, so that I can give my application as Demo to customers. Can anyone please suggest me some functionality for this or some guidelines how to achieve this. Any information would be greatly appreciated. Thanks in Advance, Awaiting a reply soon.
See, There are various ways to do this.One simple way,have a file and store the starting time of your application and store that file and always check the time at starting of your application and if is older tham the spcified period then show a message. Store the data in encrypted format. Another way, make a entry in registry at very first time check the time each time user starts the application, accordingly show the message
Cheers!! Brij Check my latest Article :URL Routing with ASP.NET 4.0
-
See, There are various ways to do this.One simple way,have a file and store the starting time of your application and store that file and always check the time at starting of your application and if is older tham the spcified period then show a message. Store the data in encrypted format. Another way, make a entry in registry at very first time check the time each time user starts the application, accordingly show the message
Cheers!! Brij Check my latest Article :URL Routing with ASP.NET 4.0
Hello, Brij. I was also thinking of using registry but is it possible to read registry values from a web page. Bcoz i think this will create security issues. Can you guide me in this direction with some info. If it is possible to read/write registry from web page, can u provide some link to do this. Thanks in advance, awaiting a reply soon. Again thanks for the reply.
-
Hello, Brij. I was also thinking of using registry but is it possible to read registry values from a web page. Bcoz i think this will create security issues. Can you guide me in this direction with some info. If it is possible to read/write registry from web page, can u provide some link to do this. Thanks in advance, awaiting a reply soon. Again thanks for the reply.
VikashGohil wrote:
Bcoz i think this will create security issues.
First thing if you are going to access the registry of your webserver, not every client machine. Also you require to make the entries in registry only when your product is in evaluation mode. So when your demo product will be deployed on webserver,it is normally run on 'NetworkService' account , which does not have accesss to the registry. To get the registry access, you need to make some changes for this account on webserver.The chanes are Accessing registry You can run some script make the changes on webserver when your semo application is going to deploy.
Cheers!! Brij Check my latest Article :URL Routing with ASP.NET 4.0