转载:ASP.NET在后台代码实现个功能,根据选择提示用户是否继续执行操作

这种情况是指在后台处理一个HTTP Post命令时将时序重新交给浏览器端,然后运行javascript,然后再回到服务器端,然后继续进行后边的操作。如果你会画时序图,就可以发现这种有着两个来回通讯的程序比大多数所知道的那种只有一个来回的通讯的程序要复杂(虽然代码并不多多少)。这里用到.NET的IPostBackEventHandler接口。

给个列子如下(关键代码红色标明):

protected void btnAddGift_Click(object sender, EventArgs e)
    {
        string inventoryIdStr = string.Empty;
        string inventoryQtyStr = string.Empty; 
        if (GiftRepeater.Items.Count > 0)
        {
            foreach (RepeaterItem item in GiftRepeater.Items)
            {
                string inventoryIdStr1 = string.Empty;
                string inventoryQtyStr1 = string.Empty;
                Repeater GiftSizeRepeater = item.FindControl("SelectSizeRepeater") as Repeater;
                if (GiftSizeRepeater.Items.Count > 0)
                {
                    foreach (RepeaterItem item1 in GiftSizeRepeater.Items)
                    {
                        int inventoryQty = 0;
                        int inventoryQty1 = 0;
                        HiddenField ProductQuentityHiddenField = item1.FindControl("ProductQuentityHiddenField") as HiddenField;
                        TextBox InventoryTextBox = item1.FindControl("InventoryTextBox") as TextBox;
                        HiddenField QtyHiddenField = item1.FindControl("QtyHiddenField") as HiddenField;
                        int.TryParse(QtyHiddenField.Value, out inventoryQty1);
                        if (!string.IsNullOrEmpty(InventoryTextBox.Text))
                        {
                            if (!int.TryParse(InventoryTextBox.Text, out inventoryQty))
                            {
                                MessageLabel.Text = "请确认您输入的赠品数量格式真确!";
                                return;
                            }
                            if (inventoryQty > inventoryQty1)
                            {
                                MessageLabel.Text = "您输入的某赠品数量大于当前库存,请重新选择或减少输入赠品数量!";
                                return;
                            }
                            if (inventoryQty > 0)
                            {
                                inventoryIdStr1 = inventoryIdStr1 + ProductQuentityHiddenField.Value + ",";
                                inventoryQtyStr1 = inventoryQtyStr1 + inventoryQty + ",";
                            }
                        }
                    }
                }
                inventoryIdStr = inventoryIdStr + inventoryIdStr1;
                inventoryQtyStr = inventoryQtyStr + inventoryQtyStr1;
            }
        }
        if (!string.IsNullOrEmpty(inventoryIdStr))
        {
            inventoryIdStr = inventoryIdStr.TrimEnd(',');
        }
        if (!string.IsNullOrEmpty(inventoryQtyStr))
        {
            inventoryQtyStr = inventoryQtyStr.TrimEnd(',');
        }
        int giftcount = GiftCount * Times;
        int selectcount = 0;
        if (!string.IsNullOrEmpty(inventoryQtyStr))
        {
            string[] arrs = inventoryQtyStr.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
            for (int i = 0; i < arrs.Length; i++)
            {
                selectcount = selectcount + int.Parse(arrs[i].ToString());
            }
        }
        if (giftcount > selectcount)
        {
            this.Page.ClientScript.RegisterStartupScript(this.GetType(), "next step",
           "if(confirm('您所选的赠品小于赠送的数量,确认只选着这些赠品吗?'))" + this.Page.ClientScript.GetPostBackEventReference(this, "secondnext"), true);
            return;
        }
        if (giftcount < selectcount)
        {
            MessageLabel.Text = "你所选的赠品数量不允许大于赠送的数量!";
            return;
        }
        string result = ShoppingCardManager.AddShoppingCardForPromotionGift(inventoryIdStr, inventoryQtyStr,UserId, 2);
        if (result == "1")
        {
            ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Script", "CloseWithRefreshParent();", true);
        }
        else
        {
            MessageLabel.Text = "操作失败,请重新操作!";
            return;
        }

    }

//这个是实现IPostBackEventHandler接口RaisePostBackEvent方法。

个人理解是:这个接口是.NET(小)架构设计专门为满足前后台转变的一种设计。当.NET把这些对象转化以后,在客户端点击一个POST请求时,如果这个POST请求的执行事件代码中出现了IPostBackEventHandler接口中特定的标记GetPostBackEventReference这种方法时,.NET会把当前这个POST时序执行完同时返回给客户端游览器但这个时候同时会让客户端自动再执行一个POST请求,这时这个请求就会去找RaisePostBackEvent方法去执行,然后在返回给客户端游览器。以上只代表个人对这个(小)架构设计的理解。

public void RaisePostBackEvent(string eventArgument)
    {
        if (eventArgument == "secondnext")
        {
            string inventoryIdStr = string.Empty;
            string inventoryQtyStr = string.Empty;
            if (GiftRepeater.Items.Count > 0)
            {
                foreach (RepeaterItem item in GiftRepeater.Items)
                {
                    string inventoryIdStr1 = string.Empty;
                    string inventoryQtyStr1 = string.Empty;
                    Repeater GiftSizeRepeater = item.FindControl("SelectSizeRepeater") as Repeater;
                    if (GiftSizeRepeater.Items.Count > 0)
                    {
                        foreach (RepeaterItem item1 in GiftSizeRepeater.Items)
                        {
                            int inventoryQty = 0;
                            HiddenField ProductQuentityHiddenField = item1.FindControl("ProductQuentityHiddenField") as HiddenField;
                            TextBox InventoryTextBox = item1.FindControl("InventoryTextBox") as TextBox;
                            if (!string.IsNullOrEmpty(InventoryTextBox.Text))
                            {
                                if (!int.TryParse(InventoryTextBox.Text, out inventoryQty))
                                {
                                    MessageLabel.Text = "请确认您输入的赠品数量格式真确!";
                                    return;
                                }
                                if (inventoryQty > 0)
                                {
                                    inventoryIdStr1 = inventoryIdStr1 + ProductQuentityHiddenField.Value + ",";
                                    inventoryQtyStr1 = inventoryQtyStr1 + inventoryQty + ",";
                                }
                            }
                        }
                    }
                    inventoryIdStr = inventoryIdStr + inventoryIdStr1;
                    inventoryQtyStr = inventoryQtyStr + inventoryQtyStr1;
                }
            }
            if (!string.IsNullOrEmpty(inventoryIdStr))
            {
                inventoryIdStr = inventoryIdStr.TrimEnd(',');
            }
            if (!string.IsNullOrEmpty(inventoryQtyStr))
            {
                inventoryQtyStr = inventoryQtyStr.TrimEnd(',');
                int giftcount = GiftCount * Times;
                int selectcount = 0;
                if (!string.IsNullOrEmpty(inventoryQtyStr))
                {
                    string[] arrs = inventoryQtyStr.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
                    for (int i = 0; i < arrs.Length; i++)
                    {
                        selectcount = selectcount + int.Parse(arrs[i].ToString());
                    }
                }
            }
            string result = ShoppingCardManager.AddShoppingCardForPromotionGift(inventoryIdStr, inventoryQtyStr, UserId, 2);
            if (result == "1")
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Script", "CloseWithRefreshParent();", true);
            }
            else
            {
                MessageLabel.Text = "操作失败,请重新操作!";
                return;
            }
        }
    }

 

原文地址:http://www.cnblogs.com/scottpei/archive/2012/02/29/2373879.html

转载于:https://www.cnblogs.com/Jasson-he/p/4377398.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/400626.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

第8章:形态学操作

第8章&#xff1a;形态学操作one. 腐蚀操作&#xff1a;two. 膨胀&#xff1a;three. 通用形态学函数&#xff1a;four. 开运算&#xff1a;five. 闭运算&#xff1a;six. 形态学梯度运算&#xff1a;seven. 礼帽运算&#xff1a;eight. 黑帽运算&#xff1a;night. 核函数&…

【树莓派学习笔记】四、OpenCV的安装与卸载

目录安装修改host以连接上Github测试IP修改树莓派的hosts安装各种依赖包安装OpenCV只安装核心模块安装核心模块和opencv_contribC Opencv 测试编写测试源码编译测试卸载平台&#xff1a;树莓派3B 版本&#xff1a; 2021-05-07-raspios-buster-armhf 安装 修改host以连接上Git…

MySQL ERROR 1071 (42000): Specified key was too long; max key length is 767 bytes

今天在使用mysql时&#xff0c;又遇到了如博文标题所示的问题&#xff0c;以前针对该问题未进行记录&#xff0c;今天特意进行说明存档。 该问题是由键值字段长度过长导致。mysql支持数据库表单一键值的最大长度不能超过767字节&#xff0c;超出这个长度即报错&#xf…

转载:用大白话聊聊分布式系统

转载&#xff1a;http://blog.csdn.net/zhousenshan/article/details/71304922?locationNum10&fps1转载于:https://www.cnblogs.com/wdh1995/p/7067985.html

IE 弹出框处理经验

//各屏幕弹出窗样式 // 1366*768var style_1366x768 "dialogWidth:950px;dialogHeight:650px;help:no;center:yes;status:no;resizable:no;location:yes;"; //弹出窗口示例代码function showDialog(url,title,style) { window.showModalDialog(url, title, style…

第9章:图像梯度

第9章&#xff1a;图像梯度one. Sobel理论基础1. 计算水平方向偏导数的近似值2. 计算垂直方向偏导数的近似值two. Sobel算子及函数的使用:1. 函数语法&#xff1a;2. 对像素取绝对值&#xff1a;3. 方向&#xff1a;three. Scharr 算子及函数使用:1. 函数语法&#xff1a;2. 实…

FreeBSD9.1安装Gnome2桌面

1. #pkg_add -r xorg gnome2 gdm2. #ee /etc/rc.conf  加入hald_enable"YES" dbus_enable"YES gdm_enable"YES" gnome_enable"YES" 3. # /usr/local/etc/rc.d/dbus start # /usr/local/etc/rc.d/hald start4. # ee /etc/fstab 加入pro…

【树莓派学习笔记】五、处理、自动重命名并另存为图片

目录编写源码编译测试平台&#xff1a;树莓派3B 版本&#xff1a; 2021-05-07-raspios-buster-armhf 编写源码 所用源码修改自【机器视觉学习笔记】最近邻插值实现图片任意角度旋转&#xff08;C&#xff09; 在合适的地方编写源码 nano main.cpp#include <opencv2/openc…

【bzoj3744】Gty的妹子序列 分块+树状数组+主席树

题目描述 我早已习惯你不在身边&#xff0c;人间四月天 寂寞断了弦。回望身后蓝天&#xff0c;跟再见说再见……某天,蒟蒻Autumn发现了从 Gty的妹子树(bzoj3720) 上掉落下来了许多妹子,他发现她们排成了一个序列,每个妹子有一个美丽度。Bakser神犇与他打算研究一下这个妹子序列…

Linux系统软件包的管理   3月30日课程

Linux系统软件包的管理一、 rpm工具rpm Redhat Package Manager&#xff0c; 设计理念是开放的&#xff0c;不仅仅是在RedHat平台上&#xff0c;在SUSE上也是可以使用的。rpm包名字构成由-和.分成了若干部分&#xff0c;如abrt-cli-2.0.8-15.el6.centos.i686.rpm&#xff0c;ab…

第10章:Canny图像边缘检测

第10章&#xff1a;Canny图像边缘检测一、Canny边缘检测的基础&#xff1a;1. 应用高斯滤波去除图像噪声&#xff1a;2. 计算梯度3.非极大值抑制4. 应用双阈值确定边缘&#xff1a;二、Canny函数使用&#xff1a;​ Canny边缘检测是一种使用多级边缘检测算法检测边缘的方法。19…

【树莓派学习笔记】六、启用摄像头、实时视频、录像和截图

目录安装摄像头配置使用luvcview平台&#xff1a;树莓派3B 版本&#xff1a; 2021-05-07-raspios-buster-armhf 安装摄像头 配置 sudo raspi-config重启后 cd /dev ls可看到新增了video0设备 使用luvcview 安装 sudo apt-get install luvcview查看摄像设备详细信息 luv…

https 与 http

HTTPS,HTTP over SSL,SSL是解决传输层安全问题的网络协议&#xff0c;其核心是基于公钥密码学理论实现了对服务器身份认证&#xff0c;数据的私密性保护以及对数据完整性的校验等功能。 SSL协议在HTTP请求开始之前增加了握手阶段&#xff0c;SSL/TLS握手———加密的HTTP请求—…

Android各种屏幕分辨率(VGA、HVGA、QVGA、WQVGA、WVGA、FWVGA) 详解

2019独角兽企业重金招聘Python工程师标准>>> VGA&#xff1a;Video Graphics Array&#xff0c;即&#xff1a;显示绘图矩阵&#xff0c;相当于640480 像素&#xff1b;HVGA&#xff1a;Half-size VGA&#xff0c;即&#xff1a;VGA的一半&#xff0c;分辨率为48032…

敏捷合同-摘自网络

敏捷软件开发实践的文化中存在着一个断层&#xff0c;该断层同样体现在许多敏捷团队中。这个断层就是业务分析人员在敏捷项目中的角色——谁来担任这个角色&#xff1f;它的作用 和价值是什么&#xff1f;它又是如何发生改变的&#xff1f;这种情况的潜台词&#xff08;其实我曾…

第11章:图像金字塔

第11章&#xff1a;图像金字塔一、理论基础&#xff1a;1. 向下采样&#xff1a;2. 向上采样&#xff1a;二、pyrDown函数使用&#xff1a;三、pyrUp函数及使用&#xff1a;四、采样可逆性研究五、拉普拉斯金字塔1. 定义&#xff1a;2. 应用&#xff1a;什么是图像金子塔&#…

【树莓派学习笔记】七、(免费)内网穿透将树莓派作为服务器管理网站

目录nginx安装开机自启动测试查看nginx安装路径查看配置文件路径(测试用)修改index.nginx-debian.html内网穿透免费方案ngrok原版方案下载ngrok连接账户开启内网穿透httpSSH网云穿方案开通隧道下载开启内网穿透开机自启动花生壳方案下载和安装添加内网穿透映射测试平台&#xf…

webapi put 404

windows server 2016 IIS webapi 404 error In IIS select your website and double-click Handler Mappings &#xff08;处理程序映射&#xff09;Find ExtensionlessUrlHandler-ISAPI-4.0_32bit and double-clickIn the dialog that appears, click Request Restrictio…

linux批量远程多服务器FTP并下载文件的脚本

#!/bin/bashtimedate %Y%mdaydate -d -1 days %Y%m%dlocalDir"/DBBackup/GameDB"cd $localDir#ip_game.ini配置ftp服务器的ip,账号&#xff0c;密码等&#xff0c;格式自己定义 #比如&#xff1a;Server1 username userpasswd 1.1.1.1 Dbbackup servername(cat /D…

第12章:图像轮廓

第12章&#xff1a;图像轮廓一、查找并绘制轮廓&#xff1a;1. 查找图像轮廓&#xff1a;2. 绘制图像轮廓&#xff1a;3. 绘制轮廓实例&#xff1a;二、矩特征1. 矩的计算&#xff1a;moments函数2. 计算轮廓面积&#xff1a;contourArea函数3. 计算轮廓长度&#xff1a;arcLen…