VS2008下ASP.net(C#)调试问题

2024年11月27日 15:32
有2个网友回答
网友(1):

1.你可以在你的类里面写一个方法,就可以使用了
比如:
//在客户端显示弹出式对话框
public static void WebMess(string values)
{
HttpContext.Current.Response.Write("");
HttpContext.Current.Response.End();
}
然后在你的程序里面就可以调用这个方法了
CustomerDB.WebMess("TEST!");
2.要看你的IE浏览器里面允许调试不,在IE浏览器里面高级设置里面

网友(2):

Response.Write("");