12345678910111213141516171819202122232425262728293031323334353637 |
- using LYFZ.WeixinServiceDate.DAL;
- using LYFZ.WeixinServiceDate.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace LYFZ.WeixinServers.WxAuthorize
- {
- public partial class AddOfficialAccount : System.Web.UI.Page
- {
- public string eid = "";
- public int id=-1;
- public Model_CustomerInterfaces cusModel = new Model_CustomerInterfaces();
- DAL_CustomerInterfaces cusDal = new DAL_CustomerInterfaces();
- protected void Page_Load(object sender, EventArgs e)
- {
-
- if (Request.QueryString["eid"] != null)
- {
- eid = Request.QueryString["eid"];
- }
- if (Request.QueryString["id"] != null)
- {
- id =Convert.ToInt32(Request.QueryString["id"]);
- }
- if (id > 0)
- {
- cusModel = cusDal.GetModel(id);
- }
- }
- }
- }
|