Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > C# (.NET) > ASP.NET Microsoft SQL Server 2012 (System.Data.SqlClient) > (C#) ASP.NET & SQL Server 2012



Clound SSD Virtual Server

(C#) ASP.NET & SQL Server 2012

(C#) ASP.NET & SQL Server 2012 เป็นตัวอย่างการเขียน ASP.NET กับ SQL Server 2012 แบบง่าย ๆ โดยการใช้ NameSpace ของ System.Data.SqlClient เข้ามาจัดการกับฐานข้อมูล SQL Server 2012 ซึ่งการใช้งานจะเหมือนกับ Version 2000,2005 และ 2008 ทุกประการครับ

ASP.NET & SQL Server


Language Code : VB.NET || C#

Syntax

Server=IP/Server\Instance;UID=sa;PASSWORD=;Database=database;Max Pool Size=400;Connect Timeout=600;


Quote:
IP/Server\Instance


กรณีที่ใช้งานเป็น Default instance ให้ใช้การเรียกผ่าน IP หรือชื่อเรื่องได้เลย โดยไม่ต้องกำหนดชื่อ Instance

SQL Server 2012 Install with instance

การติดตั้งโดยกำหนดชื่อ Instance อื่น อันเนื่องจากได้กำหนดชื่อ Default ใน SQL Server เวอร์ชั่นอื่น ๆ ไว้แล้ว สามารถอ่านรายละเอียดได้ที่ขั้นตอนการติดตั้ง SQL Server 2012


Instance NameSpace

C#
Using System.Data; 
Using System.Data.SqlClient;


AspNetSQLServer2012.aspx

<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.SqlClient"%>
<%@ Page Language="C#" Debug="true" %>
<script runat="server">

	SqlConnection objConn;
	SqlCommand objCmd;

   	 void Page_Load(object sender,EventArgs e)
	{
		String strConnString;
		strConnString = "Server=localhost\SQL2012;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;";
		objConn = new SqlConnection(strConnString);
		objConn.Open();

		BindData();
    	}

	void BindData()
	{
		String strSQL;
		strSQL = "SELECT * FROM customer";

		SqlDataReader dtReader;
		objCmd = new SqlCommand(strSQL, objConn);
		dtReader = objCmd.ExecuteReader();
		
		//*** BindData to Repeater ***//
		myRepeater.DataSource = dtReader;
		myRepeater.DataBind();

		dtReader.Close();
		dtReader = null;

	}

	void Page_UnLoad()
	{
		objConn.Close();
		objConn = null;
	}

</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - SQL Server 2012</title>
</head>
<body>
	<form id="form1" runat="server">
   	<asp:Repeater id="myRepeater" runat="server">
	<HeaderTemplate>
		<table border="1">
			<tr>
				<th>CustomerID</th>
				<th>Name</th>
				<th>Email</th>
				<th>CountryCode</th>
				<th>Budget</th>
				<th>Used</th>
			</tr>
	</HeaderTemplate>
	<ItemTemplate>
		<tr>
			<td align="center"><asp:Label id="lblCustomerID" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CustomerID") %>'></asp:Label></td>
			<td><asp:Label id="lblName" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Name") %>'></asp:Label></td>
			<td><asp:Label id="lblEmail" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Email") %>'></asp:Label></td>
			<td align="center"><asp:Label id="lblCountryCode" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CountryCode") %>'></asp:Label></td>
			<td align="right"><asp:Label id="lblBudget" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Budget") %>'></asp:Label></td>
			<td align="right"><asp:Label id="lblUsed" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Used") %>'></asp:Label></td>
		</tr>			
	</ItemTemplate>
	<AlternatingItemTemplate>
		<tr bgcolor="#e8e8e8">
			<td align="center"><asp:Label id="lblCustomerID" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CustomerID") %>'></asp:Label></td>
			<td><asp:Label id="lblName" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Name") %>'></asp:Label></td>
			<td><asp:Label id="lblEmail" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Email") %>'></asp:Label></td>
			<td align="center"><asp:Label id="lblCountryCode" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "CountryCode") %>'></asp:Label></td>
			<td align="right"><asp:Label id="lblBudget" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Budget") %>'></asp:Label></td>
			<td align="right"><asp:Label id="lblUsed" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Used") %>'></asp:Label></td>
		</tr>			
	</AlternatingItemTemplate>
	</asp:Repeater>
	</form>
</body>
</html>


Screenshot

ASP.NET & SQL Server 2012






   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2012-06-07 21:04:33 / 2012-06-07 21:09:57
  Download : Download  (C#) ASP.NET & SQL Server 2012
 Sponsored Links / Related

 
(C#) ASP.NET & SQL Server 2012
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่