|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
你可以先看看这篇文章(软微学院生涯-三朝元老经验谈),打不开再跟我说。(我的意思是想让她自己先稍微了解一下到底现在各个方向学的工具以及以后要做的工具大概是什么,因为喜欢做什么样的事其实自己最清楚的)asp.net|datagrid|会见|数据|数据库 创立一个WEB页面,定名为:Add.aspx。
Add.aspx代码:
<%@Pagelanguage="c#"Codebehind="Add.aspx.cs"AutoEventWireup="false"Inherits="TeachShow.Charpter7.AccessDataBase.Add"%>
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN">
<HTML>
<HEAD>
<title>Add</title>
<LINKhref="../../Style.CSS"type="text/css"rel="stylesheet">
<metacontent="MicrosoftVisualStudio.NET7.1"name="GENERATOR">
<metacontent="C#"name="CODE_LANGUAGE">
<metacontent="JavaScript"name="vs_defaultClientScript">
<metacontent="http://schemas.microsoft.com/intellisense/ie5"name="vs_targetSchema">
</HEAD>
<bodyMS_POSITIONING="GridLayout">
<formid="Form1"method="post"runat="server">
<divalign="center">
<center>
<tableclass="smallBlack"height="318"cellSpacing="0"cellPadding="0"width="429"border="0">
<tr>
<tdclass="title"vAlign="top"width="429"colSpan="2"height="31">增加一个新的刊行者</td>
</tr>
<tr>
<tdvAlign="top"width="79"height="23">刊行者ID:</td>
<tdvAlign="top"width="350"height="23"><asp:textboxid="TextBox1"runat="server"Height="18px"CssClass="smallRed"></asp:textbox><FONTface="宋体">(以99打头,共4位数字)</FONT></td>
</tr>
<tr>
<tdvAlign="top"width="79"height="23"><FONTface="宋体">姓名:</FONT></td>
<tdvAlign="top"width="350"height="23"><asp:textboxid="TextBox2"runat="server"Height="18px"CssClass="smallRed"></asp:textbox></td>
</tr>
<tr>
<tdvAlign="top"width="79"height="23"><FONTface="宋体">乡村:</FONT></td>
<tdvAlign="top"width="350"height="23"><asp:textboxid="TextBox3"runat="server"Height="18px"CssClass="smallRed"></asp:textbox></td>
</tr>
<tr>
<tdvAlign="top"width="79"height="23"><FONTface="宋体">省分:</FONT></td>
<tdvAlign="top"width="350"height="23"><asp:textboxid="TextBox4"runat="server"Height="18px"CssClass="smallRed"></asp:textbox><FONTface="宋体">(2个字符)</FONT></td>
</tr>
<tr>
<tdvAlign="top"width="79"height="24"><FONTface="宋体">国度:</FONT></td>
<tdvAlign="top"width="350"height="24"><asp:textboxid="TextBox5"runat="server"Height="18px"CssClass="smallRed"></asp:textbox></td>
</tr>
<tr>
<tdvAlign="top"align="center"width="429"colSpan="2"height="24"><asp:linkbuttonid="LinkButton1"runat="server">提交到数据库</asp:linkbutton></td>
</tr>
<tr>
<tdwidth="429"height="147"valign="top"colspan="2">
<asp:DataGridid="DataGrid1"runat="server"Height="120px"CssClass="general"Width="428px">
<ItemStyleWidth="50px"></ItemStyle>
<Columns>
<asp:EditCommandColumnButtonType="LinkButton"UpdateText="更新"CancelText="作废"EditText="编纂">
<HeaderStyleWidth="60px"></HeaderStyle>
</asp:EditCommandColumn>
<asp:ButtonColumnText="删除"CommandName="Delete"></asp:ButtonColumn>
</Columns>
</asp:DataGrid></td>
</tr>
</table>
</center>
</div>
</form>
</body>
</HTML>
Add.asp.cs代码:
usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Data.SqlClient;
usingSystem.Drawing;
usingSystem.Web;
usingSystem.Web.SessionState;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.HtmlControls;
namespaceTeachShow.Charpter7.AccessDataBase
{
///<summary>
///Add的择要申明。
///</summary>
publicclassAdd:System.Web.UI.Page
{
protectedSystem.Web.UI.WebControls.TextBoxTextBox1;
protectedSystem.Web.UI.WebControls.TextBoxTextBox2;
protectedSystem.Web.UI.WebControls.TextBoxTextBox3;
protectedSystem.Web.UI.WebControls.TextBoxTextBox4;
protectedSystem.Web.UI.WebControls.LinkButtonLinkButton1;
protectedSystem.Web.UI.WebControls.DataGridDataGrid1;
protectedSystem.Web.UI.WebControls.TextBoxTextBox5;
privatevoidPage_Load(objectsender,System.EventArgse)
{
//在此处安排用户代码以初始化页面
if(!this.IsPostBack)
{
this.BindGrid();
}
}
#regionWeb窗体计划器天生的代码
overrideprotectedvoidOnInit(EventArgse)
{你可以先看看这篇文章(软微学院生涯-三朝元老经验谈),打不开再跟我说。(我的意思是想让她自己先稍微了解一下到底现在各个方向学的工具以及以后要做的工具大概是什么,因为喜欢做什么样的事其实自己最清楚的) |
|