| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- public partial class wxsystem_Default : System.Web.UI.Page
- {
- public string pjcount;
- public string jycount;
- protected void Page_Load(object sender, EventArgs e)
- {
- pjcount = Naireclass.backnum("select floor(count(id)/6) as count from Q_Answer where Nid<>1");
- jycount = Naireclass.backnum("select floor(count(id)/3) as count from Q_Answer where Nid=1");
- }
- }
|