PageHelper.ShowScriptMsg(); //我想问的的这个PageHelper属于哪个命名空间的???我怎么解析不了啊??大家帮帮看下!!谢谢~~作者: 许王斌 时间: 2012-12-1 09:20
老罗,我记得PageHelper是老师讲课时自己编写的类
我这里有个PageHelper
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
///PageHelper 的摘要说明
/// </summary>
public static class PageHelper
{
public static void showMsg(string strMsg)
{
HttpContext.Current.Response.Write("<script>alert('"+ strMsg +"')</script>");
}