前提是IIS已经安装;
在运行框输入下图字符串,回车;进入到IIS管理器;
在D盘inetpub目录下新建一个demo1文件夹,把要发布的两个文件放入;
在IIS管理器右击 网站 节点,添加网站...;
自己起一个网站名称;物理路径选择前面的目录;C或D盘的inetpub目录是IIS默认的发布目录;
端口找一个没有使用的;其他默认;确定;
之后新建的网站就出来了;
在IIS管理器右侧,操作列表,选择 浏览网站,浏览 *:8019;
浏览器打开localhost:8019,在其后输入/demo1.aspx,就看到了页面的效果;
这是一个基本的网页查询显示数据库程序;
demo1.aspx;
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="demo1.aspx.cs" Inherits="demo1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</div>
</form>
</body>
</html>
demo1.aspx.cs;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
public partial class demo1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//IsPostBack只有在第一次打开的时候是false,其它时候都是true
if (!IsPostBack)
{
databind();
}
}
void databind()
{
SqlConnection conn = new SqlConnection("Data Source=localhost;Initial Catalog=hatcher;User Id=sa;Password=kxxxxxb;");
SqlCommand MyCommand = new SqlCommand("SELECT * FROM advpeoples", conn);
SqlDataAdapter SelectAdapter = new SqlDataAdapter();
SelectAdapter.SelectCommand = MyCommand;
DataSet MyDataSet = new DataSet();
conn.Open();
SelectAdapter.SelectCommand.ExecuteNonQuery();
SelectAdapter.Fill(MyDataSet);
GridView1.DataSource = MyDataSet.Tables[0];
GridView1.DataBind();
conn.Close();
}
}