简单记录:

模糊查询的select语句的拼写

        public List<Model.Student> GetWhereStudent(string name, string sub, string isG)
{
List<Web.Model.Student> lt = new List<Model.Student>();
string sql = "select * from SC_Student where studentName like @n and Subjects=@sub and IsGoodStudent=@is";
SqlParameter[] param = {
new SqlParameter("@n","%"+name+"%"),
new SqlParameter("@sub",sub),
new SqlParameter("@is",isG)};
using (SqlDataReader reader = SqlHelper.ExecuteDataReader(sql, param))
{
if (reader.HasRows)
{
while (reader.Read())
{
Web.Model.Student stu = new Model.Student();
stu.ID = reader.GetInt32();
stu.Name = reader.GetString();
stu.SubId = this.GetSubName(reader.GetInt32());
stu.Score = reader.GetInt32();
stu.IsGoodStudent = reader.GetBoolean();
lt.Add(stu);
}
}
}
return lt;
}

reader拿取 ROW_NUMBER() over(order by studentName)产生的值

        public List<Model.StudentAvg> EditStudent(string name, string sco)
{
List<Web.Model.StudentAvg> lst = new List<Model.StudentAvg>();
int s = ;
SqlParameter[] param =
{
new SqlParameter("@likes","%"+name+"%"),
new SqlParameter("@sco",int.TryParse(sco,out s)==true?s:)
};
using (SqlDataReader reader = SqlHelper.ExecuteProcedure("pro_Student_Avg", param))
{
if (reader.HasRows)
{
while (reader.Read())
{
Web.Model.StudentAvg stuavg = new Model.StudentAvg();
//拿取 ROW_NUMBER() over(order by studentName)产生的值
stuavg.ID = int.Parse(reader.GetSqlValue(0).ToString());
stuavg.Name = reader.GetString();
stuavg.SSum = reader.GetInt32();
stuavg.SAvg = reader.GetInt32();
lst.Add(stuavg);
}
}
}
return lst;
}

对于动态的对ObjectDataSource控件添加参数之前先清空参数:不然参数数据源的SelectParameters会叠加递增的

    protected void Page_Load(object sender, EventArgs e)
{
this.ObjectDataSource1.SelectParameters.Clear();
this.ObjectDataSource1.SelectParameters.Add("name", "");
this.ObjectDataSource1.SelectParameters.Add("sco", "");
this.ObjectDataSource1.DataBind();
}
protected void Button1_Click(object sender, EventArgs e)
{
this.ObjectDataSource1.SelectParameters.Clear();
string name = this.txtName.Text;
string sco = this.txtSco.Text;
this.ObjectDataSource1.SelectParameters.Add("name", name);
this.ObjectDataSource1.SelectParameters.Add("sco", sco);
//Web.BLL.Tran tran = new Web.BLL.Tran();
//List<Web.Model.StudentAvg> lst = tran.GetStudentAvg(name, sco);
this.ObjectDataSource1.DataBind();
}

Repeater应用实例:里面的table tr项模版不能是服务端的

    <form id="form1" runat="server">
<div>
<%-- <table id="lst">
<tr>
<td>学号</td>
<td>姓名</td>
<td>科目</td>
<td>分数</td>
<td>好学生</td>
<td>操作</td>
</tr>
<%=sb.ToString() %>>
</table><asp:LinkButton Visible="false" OnClientClick="Del()" ID="isG" runat="server">设置为好学生</asp:LinkButton>--%>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetAllStudent" TypeName="Web.BLL.Tran"></asp:ObjectDataSource>
<table id="lst">
<tr>
<td>学号</td>
<td>姓名</td>
<td>科目</td>
<td>分数</td>
<td>好学生</td>
<td>操作</td>
</tr>
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="ObjectDataSource1">
<ItemTemplate>
<tr>

// Parameters:
// expression:
// The navigation path from the container to the public property value to place
// in the bound control property.

                            <td><%# Eval("ID") %></td>
<td><%# Eval("Name") %></td>
<td><%# ((Web.Model.Subject)Eval("SubId")).StuId %></td>
<td><%# Eval("Score") %></td>
<td>
<asp:LinkButton ID="LinkButton1" Enabled='<%#!(bool)Eval("IsGoodStudent") %>' CommandArgument='<%#Eval("ID")%>' OnClick="Unnamed_Click" runat="server">
<%#(bool)Eval("IsGoodStudent") ==true ? "好学生" : "设置为好学生" %></asp:LinkButton></td>
<td><a href='Edit_Student.aspx?id=<%#Eval("ID") %>'>编辑</a>&nbsp;&nbsp;<a href='javascript:Del(<%#Eval("ID") %>);'>删除</a></td>
</tr>
</ItemTemplate>
</asp:Repeater>
</table>
<br /><br /><br />
<asp:Panel ID="Panel1" runat="server" GroupingText="学生查询">
<asp:ObjectDataSource ID="ObjectDataSource2" runat="server" SelectMethod="GetAllSubject" TypeName="Web.BLL.Tran"></asp:ObjectDataSource>
姓名:<asp:TextBox ID="txtSName" runat="server"></asp:TextBox><br />
科目:<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="ObjectDataSource2" DataTextField="StuId" DataValueField="Id"></asp:DropDownList><br />
是否是好学生:<asp:CheckBox ID="CheckBox1" runat="server" />
<br />
<asp:Button ID="Button1" runat="server" Text="查询" OnClick="Button1_Click" />
</asp:Panel>
</div>
</form>
    protected void Unnamed_Click(object sender, EventArgs e)
{
//还原 参数
this.ObjectDataSource1.SelectParameters.Clear();
LinkButton lb = ((LinkButton)sender);
if (lb.CommandArgument != "")
{
if (true)//YEs No 对话框
{
string id = lb.CommandArgument; Web.BLL.Tran tran = new Web.BLL.Tran();
if (tran.SetGood(int.Parse(id)) == )
{
this.Repeater1.DataBind();
}
} }
}
protected void Button1_Click(object sender, EventArgs e)
{
this.ObjectDataSource1.SelectParameters.Clear();
this.ObjectDataSource1.SelectParameters.Add("name", this.txtSName.Text);
this.ObjectDataSource1.SelectParameters.Add("sub", this.DropDownList1.SelectedIndex + .ToString());
this.ObjectDataSource1.SelectParameters.Add("isG", this.CheckBox1.Checked == true ? "" : "");
this.ObjectDataSource1.SelectMethod = "GetWhereStudent";
this.ObjectDataSource1.DataBind();
//this.Page.DataBind();
//this.ObjectDataSource1.SelectMethod = "GetWhereStudent";
}

js界面删除表格行

        function DelRow() {
var ta = document.getElementById("lst");
var len=ta.rows.length;
for (var i = ; i < len; i++) {
var ro = ta.rows.item(i);
if (ro.childNodes[].innerHTML = arguments[]) {
ta.deleteRow(i);
return;
}
}
};

ListView下拿后台拿服务端控件值

    protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string id = Request.QueryString["id"];
if (id != null)
{
//this.ObjectDataSource1.SelectParameters.Add("id", id);
this.ObjectDataSource1.SelectParameters[].DefaultValue = id;
this.ObjectDataSource1.DataBind();
}
} }
protected void Button1_Click(object sender, EventArgs e)
{
Web.BLL.Tran tran = new Web.BLL.Tran();
string id = ((TextBox)this.ListView1.Items[].Controls[]).Text;
string name = ((TextBox)this.ListView1.Items[].Controls[]).Text;
string sub = ((TextBox)this.ListView1.Items[].Controls[]).Attributes["MySubID"];
string sco = ((TextBox)this.ListView1.Items[].Controls[]).Text;
bool isG = ((CheckBox)this.ListView1.Items[].Controls[]).Checked;
if ( == tran.EditStudent(id, name, sub, sco, isG))
{
this.ObjectDataSource1.DataBind();
Response.Redirect("Manage_Student.aspx");
}
}
<body>
<form id="form1" runat="server">
<div>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetStudent" TypeName="Web.BLL.Tran">
<SelectParameters>
<asp:Parameter Name="id" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
<br />
<table> <tr>
<td>学号</td>
<td>姓名</td>
<td>科目</td>
<td>分数</td>
<td>好学生</td>
</tr>
<asp:ListView ID="ListView1" runat="server" DataSourceID="ObjectDataSource1">
<ItemTemplate>
<tr>
<td>
<asp:TextBox ID="TextBox4" disabled="disabled" runat="server" Text='<%#Eval("ID") %>'></asp:TextBox>
</td> <td>
<asp:TextBox ID="TextBox1" runat="server" Text='<%#Eval("Name") %>'></asp:TextBox></td> <td>
<asp:TextBox ID="TextBox3" disabled="disabled" MySubID='<%#((Web.Model.Subject)Eval("SubId")).Id %>' Text='<%#((Web.Model.Subject)Eval("SubId")).StuId %>' runat="server"></asp:TextBox></td> <td>
<asp:TextBox ID="TextBox2" runat="server" Text='<%#Eval("Score") %>'></asp:TextBox></td> <td>
<asp:CheckBox ID="CheckBox1" runat="server" Checked='<%#Eval("IsGoodStudent") %>' /></td> </tr>
</ItemTemplate> </asp:ListView>
</table>
<asp:Button ID="btnSure" OnClick="Button1_Click" runat="server" Text="确定" />
</div>
</form>

服务端控件DropDownList绑定数据

            <tr>
<td><input type="text" name="txtName" /></td>
<td>
<asp:DropDownList runat="server" ID="scoName" DataSourceID="ObjectDataSource1" DataTextField="StuId" DataValueField="Id">
</asp:DropDownList></td>
<td><input type="text" name="txtSco" /></td>
<td>
<asp:CheckBox Text="" runat="server" ID="IsGoodStudent" /></td>
</tr>

后台获取服务端控件CheckBox的选择值

        bool isGS = this.IsGoodStudent.Checked;

项目文件:http://pan.baidu.com/s/1gdJxjvt

ASPNET服务端控件练习(一个机试题)的更多相关文章

  1. (转)客户端触发Asp.net中服务端控件事件

    第一章. Asp.net中服务端控件事件是如何触发的 Asp.net 中在客户端触发服务端事件分为两种情况: 一. WebControls中的Button 和HtmlControls中的Type为su ...

  2. 如何通过JavaScript构建Asp.net服务端控件

    摘要 虽然ASP.NET的服务器控件一直被大家所诟病,但是用户控件(ACSX)在某些场景下还是非常有用的. 在一些极特珠的情况下,我们会使用JavaScript动态的构建页面中的控件,但假设遇到了我要 ...

  3. .Net Mvc3框架调用服务端控件解决方案

      /*BY:Wangyexin date:2011年4月30日 20:17:38*/ /*说明:.net mvc3框架,View层调用服务端控件,输出到.cshtml文件中显示*/ 1.先说说.ne ...

  4. js页面(页面上无服务端控件,且页面不刷新)实现请求一般处理程序下载文件方法

    对于js页面来说,未使用服务端控件,点击下载按钮时不会触发服务端事件,且不会提交数据到服务端页面后台进行数据处理,所以要下载文件比较困难.且使用jQ的post来请求一般处理程序也不能实现文件的下载,根 ...

  5. jquery 操作服务端控件,select 控件

    <asp:DropDownList ID="ddl" runat="server"></asp:DropDownList> <se ...

  6. atitit.组件化事件化的编程模型--服务端控件(1)---------服务端控件与标签的关系

    atitit.组件化事件化的编程模型--服务端控件(1)---------服务端控件与标签的关系 1. 服务器控件是可被服务器理解的标签.有三种类型的服务器控件: 1 1.1. HTML 服务器控件  ...

  7. GridView 服务端控件添加 js

    针对服务端控件的 CommandField “Delete” 添加 js $("#GridView1").find("a").each( function() ...

  8. atitit.Atitit. Gui控件and面板-----服务端控件 java struts的实现最佳实践

    atitit.Atitit.  Gui控件and面板-----服务端控件 java struts的实现最佳实践 1. 服务器控件的类别 1 1.1. 数据控件:该类控件可细分为两种类型:数据源控件和数 ...

  9. C# 服务端控件 asp:RadioButton 选择选中值

    1.服务端控件RadioButton <asp:RadioButton ID="rbNewUser" runat="server" GroupName=& ...

随机推荐

  1. this super 解释

    关于 this super 什么时候有,他们指向谁? 书上说: this 指向自己,super指向父亲的对象,个人觉得是错误的. 我认为 this 是一个指向自己对象的句柄,而super只是一个类句柄 ...

  2. 【Demo】 生成二维码 和 条形码

    条形码 和 二维码 对比 一维条形码只是在一个方向(一般是水平方向)表达信息,而在垂直方向则不表达任何信息,其一定的高度通常是为了便于阅读器的对准. 在水平和垂直方向的二维空间存储信息的条形码, 称为 ...

  3. 【C51】单片机中断

    引言 其实人的一生和单片机的运行很类似.就拿人的一生来说:有些事只需要做一次,比如得了水痘以后,体内产生免疫,以后就不会再生这个病了.有些事需要反复做,比如反复读书,反复工作,反复与困苦打交道,反复地 ...

  4. SQL 编辑

    局部变量: DECLARE @variable_name Datatype Variable_naem为局部变量的名称,Datatype为数据名称. 例如: DECLARE @name varchar ...

  5. Bundle文件的创建和使用(二)

    1.概念: An NSBundle object represents a location in the file system that groups code and resources tha ...

  6. 让android webView使用系统默认浏览器内核直接解析,不弹出选择浏览器选项

    遇到一个需求,要求浏览网页的页面不去启动其他的浏览器,全部在自身的应用中. 解决方法 webview.setWebViewClient(new WebViewClient() { @Override ...

  7. [LeetCode] Subsets (bfs的vector实现)

    Given a set of distinct integers, S, return all possible subsets. Note: Elements in a subset must be ...

  8. [LeetCode]题解(python):079 Word Search

    题目来源 https://leetcode.com/problems/word-search/ Given a 2D board and a word, find if the word exists ...

  9. 【Algorithm】堆排,C++实现

    对一个数组中的元素按照顺序构建二叉树,就形成了一个(二叉)堆.(二叉树是虚拟的,并不是真的建立二叉树) 表示堆的数组A有两个重要属性:A.heapSize,表示堆里面有多少元素,数组里有多少元素在堆里 ...

  10. angularJs:动态效果之:显示与隐藏(该例对比了普通赋值,层次赋值,事件的写法对比)

    testShowAndHiddern.html <!DOCTYPE html> <html ng-app="MyModule"> <head> ...