|
Server : Microsoft-IIS/10.0 System : Windows NT EBS-6136 10.0 build 17763 (Windows Server 2016) i586 User : jxgj ( 0) PHP Version : 7.0.33 Disable Function : passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server Directory : D:/tmp_aspnet/root/cae6aa2e/15328683/ |
?#pragma checksum "D:\wwwroot\anlian2025\wwwroot\UserControls\Contact.ascx.cs" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6481FC3C150A6924F4610E552CEE824870DBED9E"
#line 1 "D:\wwwroot\anlian2025\wwwroot\UserControls\Contact.ascx.cs"
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using WebApp.Components;
public partial class UserControls_Contact : System.Web.UI.UserControl
{
public string strCompanyName = null;
public string strAddress = null;
public string strContact = null;
public string strPhone = null;
public string strMobile = null;
public string strEmail = null;
public string strFax = null;
public string strQQ = null;
public string strICP = null;
protected void Page_Load(object sender, EventArgs e)
{
showContact();
}
protected void showContact()
{
Common common = new Common();
Contact contact = new Contact();
contact = common.showContact();
strCompanyName = contact.CompanyName;
if (strCompanyName != "")
{
strCompanyName = "<li>" + strCompanyName + "</li>";
}
strAddress = contact.Address;
if (strAddress != "")
{
strAddress = "<li>Address:" + strAddress + "</li>";
}
strPhone = contact.Phone;
if (strPhone != "")
{
strPhone = "<li>Phone:" + strPhone + "</li>";
}
strMobile = contact.Mobile;
if (strMobile != "")
{
strMobile = "<li>Mobile:" + strMobile + "</li>";
}
strEmail = contact.Email;
if (strEmail != "")
{
strEmail = "<li>Email:" + strEmail + "</li>";
}
strFax = contact.Fax;
if (strFax != "")
{
strFax = "<li>Fax:" + strFax + "</li>";
}
strContact = contact.ContactName;
if (strContact != "")
{
strContact = "<li>Contact person:" + strContact + "</li>";
}
strQQ = contact.QQ;
if (strQQ != "")
{
strQQ = "<li>QQ:" + strQQ + "</li>";
}
}
}
#line default
#line hidden