how to install asp.net roles n membership database on remote server
-
i have to make a web based installer, user will provide the details like its hosting server ip pwd etc etc, then my webapp will install n config few things on the machine. I m getting error installing asp.net roles n membership database on remote machine. Any help will be appreciated. Thanks in advance.
-
i have to make a web based installer, user will provide the details like its hosting server ip pwd etc etc, then my webapp will install n config few things on the machine. I m getting error installing asp.net roles n membership database on remote machine. Any help will be appreciated. Thanks in advance.
Check whether this article will help you or not, Membership/Roles with Remote DB
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
-
Check whether this article will help you or not, Membership/Roles with Remote DB
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
Nice article but not helping in my case, my web based installer will do every thing automatically when user provide the required stuff, my web installer will execute sql script to create custom tables and asp.net roles n membership tables, stored procedures, views, schemas ... i m having problem executing asp.net roles n membership stored procedures script & views script. Need solution coz dead line coming. OR if any1 have alternate solution? thanks in advance.
-
i have to make a web based installer, user will provide the details like its hosting server ip pwd etc etc, then my webapp will install n config few things on the machine. I m getting error installing asp.net roles n membership database on remote machine. Any help will be appreciated. Thanks in advance.
Any more information should help... How do you create this database... Did you use a the scripting wizard of Microsoft SQL, or did you use the tool ? Ensure that you're scripting the correct version (i.e., if the remote PC has 2005 , ensure to script 2005... etc...) Hope this help...
-
Any more information should help... How do you create this database... Did you use a the scripting wizard of Microsoft SQL, or did you use the tool ? Ensure that you're scripting the correct version (i.e., if the remote PC has 2005 , ensure to script 2005... etc...) Hope this help...
Every1 help is highly appreciated. But the solution i discovered after many attempts is that I generate 5 different script files 1>database_roles , 2>schema, 3>stored procedures, 4>tables, 5>views through sql server 2005. Then in asp.net i write a function that accept file name to execute script , reading the file with streamreader then executing through executenonquery, i stored all 5 names in array and through for loop i executed the scripts 1 by 1 and it worked fi9. Thanks Every1.