| 12345678910111213141516171819202122232425262728293031 |
- using BizCom;
- using SiteCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using Utils.Serialization;
- public partial class EArc_ProductForm : BasePage
- {
- protected override void OnPreInit(EventArgs e)
- {
- _selfCheckPermission = true;
- }
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- string eid = GetString("eid");
- CeErpProduct ent = CeErpProduct.Get(eid);
- AppendScript("eid=" + eid + ";");
- if (ent.FormJson != null)
- {
- AppendScript("json=" + ent.FormJson + ";");
- }
- }
- }
- }
|