Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
cart.aspx.cs 502 Bytes
Copy Edit Raw Blame History
sxt authored 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;
namespace HelloASPX
{
public partial class cart : 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>");
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化