Hi sir,
I have a website that is working fine in local server but when i hosted on goDaddy server it is showing an error.
The network path was not found
Below code i am using in web config file to connect the database.
<connectionStrings>
<add name="ConnectionString" connectionString="Data Source=r12367db.db.151.168.291.18.hostedresource.com;Initial Catalog=r12367db; User ID=johnkhan; Password='Ind786_promo';" providerName="System.Data.SqlClient" />
</connectionStrings>
<form id="form1" runat="server">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="id" DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="id" HeaderText="id" InsertVisible="False"
ReadOnly="True" SortExpression="id" />
<asp:BoundField DataField="Category" HeaderText="Category"
SortExpression="Category" />
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString%>"
SelectCommand="SELECT * FROM [HolidayCategories]"></asp:SqlDataSource>
</form>
here is screenshot of error:

http://boddaweb.com/test.aspx
regards