2
Answers

Asp.net Webpage Database connection

@{
var db = Database.Open("SmallBakery");
var selectQueryString = "SELECT * FROM Product ORDER BY Name";
}

<html>
<body>
<h1>Small Bakery Products</h1>
<table>
<tr>
<th>Id</th>
<th>Product</th>
<th>Description</th>
<th>Price</th>
</tr>
@foreach(var row in db.Query(selectQueryString))
{

<tr>
<td>@row.Id</td>
<td>@row.Name</td>
<td>@row.Description</td>
<td align="right">@row.Price</td>
</tr>
}
</table>
</body>
</html>
 
Here is my code i tried many time but con't connect i shows (
An exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll but was not handled in user code
Additional information: 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
)
 
some one told me do some changes in web.config file but i don't know which type of changes are that?
 
 
Answers (2)
0
Mahesh Chand

Mahesh Chand

2 286.4k 123.7m 20y
.NET doesn't ship with Windows XP but ships with Windows Server 2003. I don't think too many home users (not the Web users b/c you may be accessing ASP.NET web sites) are using .NET today. Only .NET users are IT people.