asp.net中viewState的应用(2)
<br />
<asp:GridView ID="GridView1" runat="server" DataKeyNames="Num" AllowSorting="true"
AutoGenerateColumns="false" CellPadding="5" GridLines="Both" BorderColor="Black"
Width="90%">
</asp>
DAL关键代码:
public IEnumerable<M_Student> ReadStuByCollegeAndName(String collnum, String name)
{
return from s in dc.M_Student
where
(!String.IsNullOrEmpty(collnum) ? s.CollegeNum.Equals(collnum) : true) &&
(!string.IsNullOrEmpty(name) ? s.Name.Contains(name) : true)
select s;
}
aspx.cs关键代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OnlineTest.Datalinq;
namespace OnlineTest.Manager
{
public partial class StudentInfoMaintain : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Bind();
.......................................
}
}
相关新闻>>
- FormView显示、更新、插入、删除数据库操作[ASP.NET源代码](一)
- FormView显示、更新、插入、删除数据库操作[ASP.NET源代码](二)
- FormView显示、更新、插入、删除数据库操作[ASP.NET源代码](三)
- 如何理解async和await设计模式和如何应用到.net 4以下的framewor
- asp.net中js合并,压缩
- ASP.NET页面之间传递值的几种方式
- ASP.NET之Datalist详解(分页)
- ASP.NET(C#)验证数字
- ASP.NET MVC Razor视图引擎攻略
- 巧用section在cshtml写入layout中写入head信息 ASP.NET MVC
- 发表评论
-
- 最新评论 更多>>