ASP.NET中的几种弹出框提示基本实现方法
摘要:using System; using System.Web; namespace ShowMessage { /// <summary> /// Msg 的摘要说明。 /// </summary> public class ShowMessage { public ShowMessage() {
阅读全文
posted @
2018-04-26 15:05
qqhfeng16
阅读(176)
推荐(0) 编辑
ASPxGridView删除、添加、修改成功后,弹出提示对话框的方法
摘要:分为几步: 1、在aspx文件中添加 function EndCallBack(s, e) { if (s.cpAlertMsg != "" && s.cpAlertMsg !=null) { alert(s.cpAlertMsg); s.cpAlertMsg = null; } } </scrip
阅读全文
posted @
2018-04-26 14:48
qqhfeng16
阅读(267)
推荐(0) 编辑
GridView弹出对话框
摘要:if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate) { //内容提示为GridView第二行数据显示的内容,其索引值为1(注意:.NET中索引值都是从
阅读全文
posted @
2018-04-26 14:47
qqhfeng16
阅读(192)
推荐(0) 编辑
2.4.5 用NPOI操作EXCEL--插入图片
摘要://add picture data to this workbook. byte[] bytes = System.IO.File.ReadAllBytes(@"D:\MyProject\NPOIDemo\ShapeImage\image1.jpg"); int pictureIdx = hssf
阅读全文
posted @
2018-04-03 15:14
qqhfeng16
阅读(448)
推荐(0) 编辑