Link to home
Start Free TrialLog in
Avatar of Sukesh Shukla
Sukesh Shukla

asked on

Error while running the module online

My project is basically an ASP.NET project .........Please help me in solving the error............

User generated image
Avatar of Kimputer
Kimputer

I'm not sure if your code call for the client/browser to connect to the SQL server, or if the server is responsible. But in any case, which ever is doing the connecting, can not successfully connect right now because of restrictions.
If it's the client/browser connecting, change the code so only the server connects to the SQL server.
If it was already the server, then check the SQL configuration to allow this server to be able to connect, change it to an SQL server login (not Windows Authenctication), and set this user up in the database management console
Avatar of Sukesh Shukla

ASKER

Sir I already did the connection , using database password and id of the server....I did the changes in my connection string
<connectionStrings>
    <add name="DefaultConnection" connectionString="Server=208.91.198.196;Database=mbmci5ko_society;Uid=society;Password=b1Jga74@0;" providerName="System.Data.SqlClient" />
    <add name="HousingConnectionString" connectionString="Server=208.91.198.196;Database=mbmci5ko_society;Uid=society;Password=b1Jga74@0;" providerName="System.Data.SqlClient" />
  </connectionStrings>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Kimputer
Kimputer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial