|
I need 2 start fresh I HAD a website ran on yahoo. I took a template and re-wrote the code to suite my needs(iam new 2 playing with html) it worked fine and I could have used it.however I didnt like the look(it was a generic template)and I found one better.I also learned about ASP.NET and its use w/ members websites databases SQL servers.I then switched web hosting to godaddy yahoo doesnt support ASP I am using Visual Web Developer Express edition, I also have Microsoft SQL server 2005. I have set up a database on my webhosting, I have enabled TCP/IP in the SQL server configuration manager, yet I cannot connect 2 my database when I run aspnet_regsql.exe program..
right now this is all that is in my web.config file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<authorization>
<allow roles="users" />
</authorization>
<roleManager enabled="true" />
<authentication mode="Forms" />
</system.web>
</configuration>
I know the connection strings info just not where it go
WHY WONT ANYONE ANSWER THIS QURSTION OR help me!!??!!?
Dont need to beg people like that dude.
BTW Put your connection string right under the configuration:
<configuration>
<connectionString>
<add name = "nameofconnString" connectionString = "Data Source = yourdatabaseserver; Initial Catalog = yourdefaultDB; User ID= uname; Password = passwd />
|