以下是我們用C#來實現的,見下列實例代碼,請萬網獨立服務器客戶參考:
< %@ Import Namespace="System.Data"
%>
<%@ Import Namespace="System.Data.SQL" %>
<html>
< script language="C#"
runat="server">
' 聲明C#
public DataSet dsCustomer;
protected void Page_Load(Object Src, EventArgs E )
{
' 在打開頁面時連接數據庫
SQLConnection myConnection = new
SQLConnection
("server=127.0.0.1;uid=xxx;pwd=*****;database=***_db");
SQLDataSetCommand CustomersDSCommand = new
SQLDataSetCommand("select * from customers", myConnection);
dsCustomer = new DataSet();
CustomersDSCommand.FillDataSet(dsCustomer,"Customers");
foreach (DataRow Customer in
dsCustomer.Tables["Customers"].Rows)
{
Response.Write(Customer["CustomerId"].ToString() +
"<br> " ); } }
</script>
<body>
</body>
</html>
</td>
</tr>
</table>
</body>
注:如果您使用的是G享服務器,數據庫和WEB是分離機制,請您在頁面程序代碼調用數據庫時,不要使用local或者127.0.0.1等本機調用,使用萬網提供的數據庫地址,MSSQL地址dsc-序號.hichina.com,具體序號,需要您登錄萬網會員區(qū)后,進入主機管理->點擊相應的主機登陸名->查看主機的相關信息。
|