资源简介
asp.net 期末大作业 基本包含一学期所学内容
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class deletet : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
if (!Page.IsPostBack) bindgrid();
}
void bindgrid()
{
string sqlconnstr = ConfigurationManager.ConnectionStrings[“ConnectionString“].ConnectionString; ;
DataSet ds = new DataSet();
using (SqlConnection sqlconn = new SqlConnection(sqlconnstr))
{
SqlDataAdapter sqld = new SqlDataAdapter(“select 名称信息图片 from 资料“ sqlconn);
sqld.Fill(ds “tabstudent“);
}
//判断是否已经进行排序,如果是则按照ViewState中存储的信息生成排序后的DataView对象
if (ViewState[“SortDirection“] == null)
GridView1.DataSource = ds.Tables[“tabstudent“].DefaultView;
else
{
DataView SortedDV = new DataView(ds.Tables[“tabstudent“]);
SortedDV.Sort = ViewState[“Sortexpression“].ToString() + “ “ + ViewState[“SortDirection“].ToString();
GridView1.DataSource = SortedDV;
}
GridView1.DataBind();
}
protected void Button1_Click(object sender EventArgs e)
{
//当前行
int rowindex = ((GridViewRow)(((Button)sender).NamingContainer)).RowIndex;
//设置数据库连接
string connstr = ConfigurationManager.ConnectionStrings[“ConnectionString“].ConnectionString; ;
SqlConnection conn = new SqlConnection(connstr);
//删除行处理
String sql = “delete from 资料 where 名称=‘“ + GridView1.DataKeys[rowindex].Value.ToString() + “‘“;
SqlCommand Comm = new SqlCommand(sql conn);
conn.Open();
Comm.ExecuteNonQuery();
conn.Close();
conn = null;
Comm = null;
bindgrid();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3186 2012-05-14 20:46 ne\App_Code\ba
文件 2490368 2012-06-10 14:44 ne\App_Data\实例数据库.MDF
文件 516096 2012-06-10 14:44 ne\App_Data\实例数据库_log.ldf
文件 45056 2012-05-14 20:46 ne\Bin\FredCK.FCKeditorV2.dll
文件 1105 2012-06-02 10:20 ne\deletet.aspx
文件 2184 2012-06-02 13:33 ne\deletet.aspx.cs
文件 236 2012-05-14 20:46 ne\fckeditor\editor\css\behaviors\disablehandles.htc
文件 822 2012-05-14 20:46 ne\fckeditor\editor\css\behaviors\showtableborders.htc
文件 2648 2012-05-14 20:46 ne\fckeditor\editor\css\fck_editorarea.css
文件 4145 2012-05-14 20:46 ne\fckeditor\editor\css\fck_internal.css
文件 1696 2012-05-14 20:46 ne\fckeditor\editor\css\fck_showtableborders_gecko.css
文件 288 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_address.png
文件 293 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_blockquote.png
文件 229 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_div.png
文件 218 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_h1.png
文件 220 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_h2.png
文件 219 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_h3.png
文件 229 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_h4.png
文件 236 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_h5.png
文件 216 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_h6.png
文件 205 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_p.png
文件 223 2012-05-14 20:46 ne\fckeditor\editor\css\images\block_pre.png
文件 184 2012-05-14 20:46 ne\fckeditor\editor\css\images\fck_anchor.gif
文件 599 2012-05-14 20:46 ne\fckeditor\editor\css\images\fck_flashlogo.gif
文件 105 2012-05-14 20:46 ne\fckeditor\editor\css\images\fck_hiddenfield.gif
文件 54 2012-05-14 20:46 ne\fckeditor\editor\css\images\fck_pagebreak.gif
文件 1709 2012-05-14 20:46 ne\fckeditor\editor\css\images\fck_plugin.gif
文件 1773 2012-05-14 20:46 ne\fckeditor\editor\dialog\common\fck_dialog_common.css
文件 10481 2012-05-14 20:46 ne\fckeditor\editor\dialog\common\fck_dialog_common.js
文件 74 2012-05-14 20:46 ne\fckeditor\editor\dialog\common\images\locked.gif
............此处省略503个文件信息
相关资源
- Asp.net MVC4高级程序设计Professional ASP
- ASP.NET WebForm通用权限系统框架源码 二
- 最新微信公众平台源码 C# ASP.NET 微商
- vue项目demoasp.net mvc5+vue2.5
- ASP.NET MVC3-Music Store中英文教程
- C#-ASP.NET大作业-LOL论坛
- vs2008asp.net(c#)某汽车销售公司网站
- 基于ASP.NET的博客系统源代码 BLOG
- ASP.NET+SQL Server小说阅读系统源码
- ASP.NET源码项目
- 高清彩版 ASP.NET Core MVC 2.0 Cookbook
- ASP.NET网上商城完整源码[201903]
- C# 小学期牙医管理系统
- Pro ASP.NET Core MVC 第6版 2016 pdf 0分
- ASP.NET Core Cloud-ready Enterprise Web Applic
- 基于asp.net学生成绩管理系统课程设计
- ASP.NET动态网页设计案例教程
- asp.net 客户关系管理系统完整源码.r
- 高清彩版 Pro ASP.NET Core MVC 2(7th)
- 淘淘汽配网上商城项目
- ASP.NET MVC权限管理系统源代码
- asp.net(c#)开源商店系统Brn shop 2.1(
- asp.net三层写的安欣快餐在线订餐系统
- asp.net图片管理系统
- ASP.NET CORE跨平台开发从入门到实战
- ASP.NET MVC4+EF6+Bootstrap3 通用后台管理系
- ASP.NET MVC后台系统项目
- Manning ASP.NET Core in Action 2018.6 pdf
- asp.net编写的在线同学录网站
- asp.net 进销存系统
评论
共有 条评论