加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ProductList.aspx.cs 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
sxt 提交于 2024-04-26 18:25 . first
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Xml;
namespace HelloASPX
{
public partial class ProductList : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["username"] == null)
{
HttpContext.Current.Response.Write("<script>alert('请先登陆!');location='Login.aspx'</script>");
}
}
protected void Button2_Click(object sender, EventArgs e)
{
Button btn = (Button)sender;
Response.Cookies["ProductId"].Value = btn.CommandArgument.ToString();
Response.Redirect("ProductDetails.aspx");
}
protected void AddProduct_Click(object sender, EventArgs e)
{
Session["username"] = Request["username"];
Response.Redirect("AddProduct.aspx");
}
protected void useradminButton_Click(object sender, EventArgs e)
{
Session["username"] = Request["username"];
Response.Redirect("Default.aspx");
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化