good.aspx.cs
来自「易想商城系统」· CS 代码 · 共 45 行
CS
45 行
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
namespace YXShop.Web.admin.Accessories
{
public partial class good : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["strdm"] != null || Session["strcg"] != null)
{
if (Session["strdm"].ToString() != "")
{
Label6.Text = Session["strdm"].ToString() + "无此用户发送失败!!!";
}
else
{
Label6.Text = "";
}
if (Session["strcg"].ToString() != "")
{
Label5.Text = Session["strcg"].ToString() + "发送成功";
}
else
{
Label5.Text = "";
}
}
}
protected void Button5_Click(object sender, EventArgs e)
{
HttpContext.Current.Response.Redirect("Sendout.aspx");
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?