My index.aspx code\[code\]<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="index.aspx.cs" Inherits="helloduniya.index" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title></title></head><body><form id="form1" runat="server"><div> <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" /> <asp:Label ID="Label1" runat="server" Text="what's up??"></asp:Label><asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1"> <Columns> <asp:BoundField DataField="username" HeaderText="username" SortExpression="username" /> <asp:BoundField DataField="password" HeaderText="password" SortExpression="password" /> </Columns></asp:GridView> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"></asp:SqlDataSource></div></form></body></html>\[/code\]my index.aspx.cs code is\[code\]using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace helloduniya{ public partial class index : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) { SqlDataSource1.SelectCommand = "Select * from [Login]"; GridView1.DataBind(); } protected void Button1_Click(object sender, EventArgs e) { Label1.Text = "i did this...have u noticed...yipeeeeeeeeee!!"; }}}\[/code\]my web.config is\[code\]<?xml version="1.0"?><configuration> <connectionStrings><add name="ConnectionString" connectionString="Server=xx.xxx.xx.xx;Database=admin_database;uid=arrest;pwd=password;" /> </connectionStrings> <system.web> <customErrors mode="Off" /> <compilation targetFramework="4.0" /> <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" /> </system.web></configuration>\[/code\]my domain is givemyspace.comi am getting some trouble connecting to mysql database which is available on the server.Error is A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)its hosted on the http://www.givemyspace.comany idea what i m missing here...