forked from justjavac/layoutit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMTALayoutitPage.aspx.cs
39 lines (35 loc) · 1.45 KB
/
MTALayoutitPage.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class MTALayoutitPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (Request.QueryString["pageid"] != null)
{
TenantsPageWS.TenantsPageWebServiceSoapClient tpws = new TenantsPageWS.TenantsPageWebServiceSoapClient();
int pageid = Convert.ToInt32(Request.QueryString["pageid"].ToString());
TenantsPageWS.TenantsPage tp = tpws.getTenantsPageByPageId(pageid);
if (tp != null)
{
this.tenantId.Value = tp.TenantId.ToString();
this.userId.Value = tp.CreateUserID.ToString();
this.pageId.Value = tp.PageId.ToString();
this.pageName.Value = tp.PageName;
this.pageFilePath.Value = (tp.PhysicalFileName == null ? "" : tp.PhysicalFileName);
this.pageContent.Value = (tp.FileContent == null ? "" : checkFileContent(tp.FileContent));
this.layoutitConent.Value = (tp.LayoutitContent == null ? "" : checkFileContent(tp.LayoutitContent));
}
}
}
}
private string checkFileContent(string FileContent)
{
return (FileContent.Length < 50 ? "" : FileContent);
}
}