zoukankan
html css js c++ java
从连接触发删除事件
前台代码:
Code
1
<
asp:LinkButton ID
=
"
Delete
"
Text
=
"
删除
"
runat
=
"
server
"
CommandName
=
"
Delete
"
CommandArgument
=
'
<%#Eval("ID","{0}") %>
'
2
OnCommand
=
"
Delete_OnClick
"
/>
后台代码:
protected
void
Delete_OnClick(
object
sender, CommandEventArgs ce )
{
try
{
rt.Delete(
int
.Parse (ce.CommandArgument .ToString ()) );
if
(
int
.Parse( Session[
"
GVState
"
].ToString( ) )
<
0
)
{
Session[
"
GridView
"
]
=
rt.select( );
GridView1.DataSource
=
rt.select( );
GridView1.DataBind( );
}
else
{
Session[
"
GridView
"
]
=
rt.select( txtKey.Text, cbIsInPos.Checked, FilePath );
GridView1.DataSource
=
rt.select( txtKey.Text, cbIsInPos.Checked, FilePath );
GridView1.DataBind( );
}
}
catch
( Exception ex )
{
txtErrorMessage.Text
=
ex.Message;
}
}
作者:
KKcat
出处:
http://jinzhao.cnblogs.com/
个人博客:
http://jinzhao.me/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
查看全文
相关阅读:
人际交往的原则
做事的八大原则
做人要有三颗心,两种意,简称:三心二意
基于docker Jenkins搭建持续集成自动化测试环境,管理、配置、运行 Node 节点与 Slave 分布式运行
docker dockerfile使用详解
OS + Linux Memory / NUMA / Non-Uniform Memory Access
my live PC / ThinkPad_X13_Yoga_Gen_2 / 20W8001RUS
0. 《RDMA杂谈》专栏索引
RDMA read and write with IB verbs
深入浅出全面解析RDMA
原文地址:https://www.cnblogs.com/jinzhao/p/1045590.html
最新文章
TERSUS笔记305-04上一页
TERSUS笔记304-05下一页
fatal: unable to access 'https://gitlab.com/********.git/': Could not resolve host: gitlab.com git无法拉代码、git无法提交
LeetCode最小操作次数使数组元素相等Swift
能否向编译后得到的类中增加实例变量?能否向运行时创建的类中添加实例变量?为什么
leetcode1931 用三种不同颜色为网格涂色
leetcode1505 最多 K 次交换相邻数位后得到的最小整数
leetcode1658 将 x 减到 0 的最小操作数
HTTP 的 短连接、长连接、并行连接
DNS预解析
热门文章
<meta> 标签
<script> 标签
Windows 对象
BOM
DOM 节点
JS 中 函数 的一些概念
Jmeter + Grafana + InfluxDB 性能测试监控
敏捷模型
高效能人士的七个习惯
高效做事的方法
Copyright © 2011-2022 走看看