Default.aspx.cs 549 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. public partial class wxsystem_Default : System.Web.UI.Page
  8. {
  9. public string pjcount;
  10. public string jycount;
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. pjcount = Naireclass.backnum("select floor(count(id)/6) as count from Q_Answer where Nid<>1");
  14. jycount = Naireclass.backnum("select floor(count(id)/3) as count from Q_Answer where Nid=1");
  15. }
  16. }