public void createmenu(HttpContext context) { Hidistro.ControlPanel.WeiBo.WeiBo bo = new Hidistro.ControlPanel.WeiBo.WeiBo(); string s = ""; if (!string.IsNullOrEmpty(context.Request["comment"])) { s = bo.createmenu(context.Request["comment"]); } context.Response.Write(s); }
public void commentscreate(HttpContext context) { string s = new Hidistro.ControlPanel.WeiBo.WeiBo().commentscreate(context.Request["id"], context.Request["comment"]); context.Response.Write(s); }