62,182
社区成员
发帖
与我相关
我的任务
分享
for(int i=0;i<10;i++)
{
if(i==5)
{
//程序中断 弹出是否对话询问用户是否继续 获得用户返回消息。。根据用户返回消息决定是否继续
}
}
protected void Page_Load(object sender, EventArgs e)
{
bool flag = false;
if (Request["flag"] != null && Request["flag"].ToString() == "1")
{
flag = true;
}
for (int i = 0; i < 10; i++)
{
if (i == 5 && flag != true)
{
Response.Write(" <script>if(confirm('是否真的继续')){window.location.href='default.aspx?flag=1'} </script>");
Response.End();
}
Response.Write(i + "<BR>");
}
}
protected void Page_Load(object sender, EventArgs e)
{
bool flag = false;
if (Request["flag"]!=null && Request["flag"].ToString() == "1")
{
flag = true;
}
for (int i = 0; i < 10; i++)
{
if (i == 5 && flag != true)
{
Response.Write(" <script>if(confirm('是否真的继续')){window.location.href=if((/\\?/).test(window.location.href)){window.location.href.replace(/\\?/,'?flag=1&');}else{window.location.href=window.location.href+'?flag=1'}} </script>");
Response.End();
}
}
}