修改个人信息编辑页面,可编辑个人基本信息。

This commit is contained in:
2022-09-14 15:50:39 +08:00
parent 918b63a4b9
commit 89e4a363ec
23 changed files with 374 additions and 166 deletions
+36 -22
View File
@@ -34,9 +34,9 @@
<Items>
<f:Label runat="server" ID="lbSystemVersion" Hidden="true" Label="系统版本"></f:Label>
<f:ToolbarFill runat="server"></f:ToolbarFill>
<%--<f:Button ID="btnSave" Icon="SystemSave" runat="server"
OnClick="btnSave_Click">
</f:Button>--%>
<f:HiddenField runat="server" ID="hdUrl"></f:HiddenField>
<f:Button ID="btnSave" Icon="SystemSave" runat="server" OnClick="btnSave_Click" Text="保存">
</f:Button>
<f:Button ID="btnCustomQuery" Text="自定义查询" Icon="SystemSearch" runat="server"
OnClick="btnCustomQuery_Click" Hidden="true">
</f:Button>
@@ -55,13 +55,19 @@
Width="200px" ShowHeader="false">
<Items>
<f:TextBox ID="txtUserName" runat="server" Label="姓名" Readonly="true"></f:TextBox>
<f:TextBox ID="txtUserCode" runat="server" Label="用户编号" Readonly="true"></f:TextBox>
<f:TextBox ID="drpSex" Label="性别" runat="server" Readonly="true"></f:TextBox>
<f:TextBox ID="dpBirthDay" Label="出生日期" runat="server" Readonly="true"></f:TextBox>
<f:TextBox ID="drpMarriage" Readonly="true" Label="婚姻状况" runat="server">
<f:TextBox ID="txtJobNum" runat="server" Label="工号" MaxLength="50">
</f:TextBox>
<f:TextBox ID="drpNation" Readonly="true" Label="民族" runat="server"></f:TextBox>
<f:TextBox ID="drpUnit" Readonly="true" Label="所在单位" runat="server"></f:TextBox>
<f:TextBox ID="txtUnit" Readonly="true" Label="所在单位" runat="server"></f:TextBox>
<f:RadioButtonList ID="rblSex" runat="server" Label="性别">
<f:RadioItem Value="1" Text="男" Selected="true" />
<f:RadioItem Value="2" Text="女" />
</f:RadioButtonList>
<f:DatePicker ID="txtBirthday" runat="server" Label="出生日期">
</f:DatePicker>
<f:DropDownList ID="drpMaritalStatus" runat="server" Label="婚姻状况" EnableEdit="true">
</f:DropDownList>
<f:DropDownList ID="drpNation" runat="server" Label="民族" EnableEdit="true">
</f:DropDownList>
</Items>
</f:Panel>
<f:Panel ID="Panel4" runat="server" BoxFlex="5" ShowBorder="false" ShowHeader="false"
@@ -69,33 +75,41 @@
<Items>
<f:TextBox ID="txtAccount" runat="server" Label="登录账号" Readonly="true">
</f:TextBox>
<f:TextBox ID="txtIdentityCard" runat="server" Label="身份证号" Readonly="true">
<f:TextBox ID="txtIdentityCard" runat="server" Label="身份证号" Required="true"
OnBlur="txtIdentityCard_Blur" EnableBlurEvent="true">
</f:TextBox>
<f:TextBox ID="txtEmail" runat="server" Label="邮箱" Readonly="true">
<f:TextBox ID="txtTelephone" runat="server" Label="联系电话" MaxLength="50">
</f:TextBox>
<f:TextBox ID="txtTelephone" runat="server" Label="手机号" Readonly="true">
</f:TextBox>
<f:TextBox ID="drpEducation" Label="文化程度" runat="server" Readonly="true">
</f:TextBox>
<f:TextBox ID="txtHometown" runat="server" Label="籍贯" Readonly="true">
</f:TextBox>
<f:TextBox ID="drpPosition" Label="职务" runat="server" Readonly="true">
<f:TextBox ID="txtGraduate" runat="server" Label="毕业院校" MaxLength="50">
</f:TextBox>
<f:DropDownList ID="drpEduLevel" runat="server" Label="最高学历" EnableEdit="true">
</f:DropDownList>
<f:DropDownList ID="drpPosition" runat="server" Label="职务" EnableEdit="true">
</f:DropDownList>
<f:DropDownList ID="drpPostTitle" runat="server" Label="职称" LabelAlign="Right" EnableEdit="true">
</f:DropDownList>
</Items>
</f:Panel>
<f:Panel ID="Panel5" Title="面板1" BoxFlex="3" runat="server" ShowBorder="false" ShowHeader="false"
Layout="VBox">
CssClass="blockpanel">
<Items>
<f:Image ID="Image1" CssClass="userphoto" ImageUrl="~/res/images/blank_180.png" runat="server"
BoxFlex="1">
<f:Image ID="imgPhoto" CssClass="userphoto" ImageUrl="~/res/images/blank.png"
runat="server" ToolTip="要求:小于300K且清晰大头照!且必传!">
</f:Image>
<f:Toolbar runat="server" ToolbarAlign="Center">
<Items>
<f:FileUpload ID="filePhoto" CssClass="uploadbutton" runat="server" ButtonText="上传照片" ShowRedStar="true"
ButtonOnly="true" AutoPostBack="true" OnFileSelected="filePhoto_FileSelected">
</f:FileUpload>
</Items>
</f:Toolbar>
</Items>
</f:Panel>
</Items>
</f:Panel>
</Items>
<Items>
<f:Form ID="Form7" ShowBorder="false" ShowHeader="false" runat="server">
<f:Form ID="Form7" ShowBorder="false" ShowHeader="false" runat="server" Hidden="true">
<Rows>
<f:FormRow>
<Items>
+170 -43
View File
@@ -1,7 +1,10 @@
namespace FineUIPro.Web.Personal
{
using BLL;
using FastReport.Utils;
using Model;
using System;
using System.IO;
using System.Linq;
public partial class PersonalInfo : PageBase
@@ -32,6 +35,12 @@
{
if (!IsPostBack)
{
BasicDataService.InitBasicDataProjectUnitDropDownList(this.drpMaritalStatus, "MARITAL_STATUS", true);
BasicDataService.InitBasicDataProjectUnitDropDownList(this.drpNation, "MINZU_TYPE", true);
BasicDataService.InitBasicDataProjectUnitDropDownList(this.drpEduLevel, "EDU_LEVEL", true);
PositionService.InitPositionDropDownList(this.drpPosition, true);
PostTitleService.InitPostTitleDropDownList(this.drpPostTitle, true);
/// Tab1加载页面方法
this.Tab1LoadData();
if (this.CurrUser.PersonId == Const.hfnbdId)
@@ -49,62 +58,180 @@
/// </summary>
private void Tab1LoadData()
{
var user = Person_PersonsService.GetPerson_PersonsById(this.CurrUser.PersonId);
if (user != null)
var getData = Person_PersonsService.GetPerson_PersonsById(this.CurrUser.PersonId);
if (getData != null)
{
this.txtUserName.Text = user.PersonName;
this.txtUserCode.Text = user.JobNum;
var sexVules = BLL.ConstValue.drpConstItemList(ConstValue.Group_0002).FirstOrDefault(x => x.ConstValue == user.Sex);
if (sexVules != null)
this.txtUserName.Text = getData.PersonName;
this.txtJobNum.Text = getData.JobNum;
if (!string.IsNullOrEmpty(getData.Sex))
{
this.drpSex.Text = sexVules.ConstText;
this.rblSex.SelectedValue = getData.Sex;
}
this.dpBirthDay.Text = string.Format("{0:yyyy-MM-dd}", user.Birthday);
var MarriageVules = BLL.ConstValue.drpConstItemList(ConstValue.Group_0003).FirstOrDefault(x => x.ConstValue == user.MaritalStatus);
if (MarriageVules != null)
{
this.drpMarriage.Text = MarriageVules.ConstText;
}
this.txtBirthday.Text = string.Format("{0:yyyy-MM-dd}", getData.Birthday);
this.drpMaritalStatus.SelectedValue = getData.MaritalStatus ?? Const._Null;
this.drpNation.SelectedValue = getData.Nation;
this.txtUnit.Text = UnitService.GetUnitNameByUnitId(getData.UnitId);
this.txtAccount.Text = getData.Account;
this.txtIdentityCard.Text = getData.IdentityCard;
this.txtTelephone.Text = getData.Telephone;
this.txtGraduate.Text = getData.Graduate;
this.drpEduLevel.SelectedValue = getData.EduLevel ?? Const._Null;
this.drpPosition.SelectedValue = getData.PositionId ?? Const._Null;
this.drpPostTitle.SelectedValue = getData.PostTitleId ?? Const._Null;
var NationVules = BLL.ConstValue.drpConstItemList(ConstValue.Group_0005).FirstOrDefault(x => x.ConstValue == user.Nation);
if (NationVules != null)
if (!string.IsNullOrEmpty(getData.PhotoUrl))
{
this.drpNation.Text = NationVules.ConstText;
}
var units = Funs.DB.Base_Unit.FirstOrDefault(x => x.UnitId == user.UnitId);
if (units != null)
{
this.drpUnit.Text = units.UnitName;
}
this.txtAccount.Text = user.Account;
this.txtIdentityCard.Text = user.IdentityCard;
this.txtEmail.Text = user.Email;
this.txtTelephone.Text = user.Telephone;
var EducationVules = BLL.ConstValue.drpConstItemList(ConstValue.Group_0004).FirstOrDefault(x => x.ConstValue == user.EduLevel);
if (EducationVules != null)
{
this.drpEducation.Text = EducationVules.ConstText;
}
this.txtHometown.Text = user.Address;
//var position = BLL.PositionService.GetPositionById(user.PositionId);
//if (position != null)
//{
// this.drpPosition.Text = position.PositionName;
//}
//this.txtPerformance.Text = user.Performance;
if (!string.IsNullOrEmpty(user.PhotoUrl))
{
this.PhotoAttachUrl = user.PhotoUrl;
this.Image1.ImageUrl = "~/" + this.PhotoAttachUrl;
this.PhotoAttachUrl = getData.PhotoUrl;
imgPhoto.ImageUrl = ("~/" + getData.PhotoUrl);
}
}
}
}
#endregion
protected void btnCustomQuery_Click(object sender, EventArgs e)
{
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../SysManage/CustomQuery.aspx"), "查询"));
}
/// <summary>
/// -照片上传
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void filePhoto_FileSelected(object sender, EventArgs e)
{
if (filePhoto.HasFile)
{
string fileName = filePhoto.ShortFileName;
if (!ValidateFileType(fileName))
{
ShowNotify("无效的文件类型!");
return;
}
fileName = fileName.Replace(":", "_").Replace(" ", "_").Replace("\\", "_").Replace("/", "_");
fileName = DateTime.Now.Ticks.ToString() + "_" + fileName;
string url = "~/" + UploadFileService.PersonBaseInfoFilePath + DateTime.Now.Year + "-" + DateTime.Now.Month + "/";
string fileMapPath = Server.MapPath(url + fileName);
filePhoto.SaveAs(fileMapPath);
if (File.Exists(fileMapPath))
{
FileInfo fileInfo = new FileInfo(fileMapPath);
double size = Math.Ceiling(fileInfo.Length * 1.0 / 1024.0);
if (size > 300)
{
Alert.ShowInTop("照片大小超过300KB,请重新上传!", MessageBoxIcon.Warning);
return;
}
}
imgPhoto.ImageUrl = url + fileName;
// 清空文件上传组件
filePhoto.Reset();
}
}
/// <summary>
/// 身份证变化
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void txtIdentityCard_Blur(object sender, EventArgs e)
{
bool isok = true;
if (!string.IsNullOrEmpty(this.txtIdentityCard.Text))
{
string idCard = this.txtIdentityCard.Text.Trim();
var q2 = Funs.DB.Person_Persons.FirstOrDefault(x => x.IdentityCard == idCard && x.PersonId != this.CurrUser.PersonId);
if (q2 != null)
{
ShowNotify("输入的身份证号码已存在!", MessageBoxIcon.Warning);
return;
}
if (!IDCardValid.CheckIDCard(idCard))
{
isok = false;
ShowNotify("输入的身份证号码有误!", MessageBoxIcon.Warning);
}
if (isok)
{
///生成二维码
this.hdUrl.Text = BLL.CreateQRCodeService.CreateCode_Simple("person$" + idCard);
DateTime? birth = IDCardValid.getBirthByIDCard(idCard);
if (birth.HasValue)
{
this.txtBirthday.Text = string.Format("{0:yyyy-MM-dd}", birth.Value);
}
}
}
}
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnSave_Click(object sender, EventArgs e)
{
var getData = Person_PersonsService.GetPerson_PersonsById(this.CurrUser.PersonId);
if (getData != null)
{
getData.JobNum = this.txtJobNum.Text.Trim();
getData.Sex = this.rblSex.SelectedValue;
getData.IdentityCard = this.txtIdentityCard.Text.Trim();
getData.Birthday = IDCardValid.getBirthByIDCard(getData.IdentityCard);
getData.Telephone = this.txtTelephone.Text.Trim();
getData.Graduate = this.txtGraduate.Text.Trim();
if (!string.IsNullOrEmpty(this.hdUrl.Text))
{
getData.QRCodeAttachUrl = this.hdUrl.Text;
}
if (this.drpMaritalStatus.SelectedValue != Const._Null && !string.IsNullOrEmpty(this.drpMaritalStatus.SelectedValue))
{
getData.MaritalStatus = this.drpMaritalStatus.SelectedValue;
}
if (this.drpNation.SelectedValue != Const._Null && !string.IsNullOrEmpty(this.drpNation.SelectedValue))
{
getData.Nation = this.drpNation.SelectedValue;
}
if (this.drpNation.SelectedValue != Const._Null && !string.IsNullOrEmpty(this.drpNation.SelectedValue))
{
getData.Nation = this.drpNation.SelectedValue;
}
if (this.drpEduLevel.SelectedValue != Const._Null && !string.IsNullOrEmpty(this.drpEduLevel.SelectedValue))
{
getData.EduLevel = this.drpEduLevel.SelectedValue;
}
if (this.drpPosition.SelectedValue != Const._Null && !string.IsNullOrEmpty(this.drpPosition.SelectedValue))
{
getData.PositionId = this.drpPosition.SelectedValue;
}
if (this.drpPostTitle.SelectedValue != Const._Null && !string.IsNullOrEmpty(this.drpPostTitle.SelectedValue))
{
getData.PostTitleId = this.drpPostTitle.SelectedValue;
}
if (!string.IsNullOrEmpty(imgPhoto.ImageUrl) && imgPhoto.ImageUrl != "~/res/images/blank.png")
{
getData.PhotoUrl = imgPhoto.ImageUrl.Replace("~/", "");
getData.HeadImage = AttachFileService.SetImageToByteArray(Funs.RootPath + getData.PhotoUrl);
}
else
{
getData.PhotoUrl = null;
getData.HeadImage = null;
}
string info = Person_PersonsService.ValidPersonInfo(getData);
if (string.IsNullOrEmpty(info))
{
Person_PersonsService.UpdatePerson(getData);
LogService.AddSys_Log(this.CurrUser, getData.PersonName, getData.PersonId, BLL.Const.PersonalInfoMenuId, BLL.Const.BtnModify);
Alert.ShowInParent("保存成功!", MessageBoxIcon.Success);
}
else
{
Alert.ShowInParent(info, MessageBoxIcon.Warning);
}
}
}
}
}
+98 -69
View File
@@ -7,11 +7,13 @@
// </自动生成>
//------------------------------------------------------------------------------
namespace FineUIPro.Web.Personal {
public partial class PersonalInfo {
namespace FineUIPro.Web.Personal
{
public partial class PersonalInfo
{
/// <summary>
/// form1 控件。
/// </summary>
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// PageManager1 控件。
/// </summary>
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.PageManager PageManager1;
/// <summary>
/// Panel2 控件。
/// </summary>
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel2;
/// <summary>
/// TabStrip1 控件。
/// </summary>
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TabStrip TabStrip1;
/// <summary>
/// Tab1 控件。
/// </summary>
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Tab Tab1;
/// <summary>
/// Toolbar1 控件。
/// </summary>
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar1;
/// <summary>
/// lbSystemVersion 控件。
/// </summary>
@@ -74,7 +76,25 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Label lbSystemVersion;
/// <summary>
/// hdUrl 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.HiddenField hdUrl;
/// <summary>
/// btnSave 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSave;
/// <summary>
/// btnCustomQuery 控件。
/// </summary>
@@ -83,7 +103,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnCustomQuery;
/// <summary>
/// SimpleForm1 控件。
/// </summary>
@@ -92,7 +112,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Form SimpleForm1;
/// <summary>
/// Panel3 控件。
/// </summary>
@@ -101,7 +121,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel3;
/// <summary>
/// Panel1 控件。
/// </summary>
@@ -110,7 +130,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel1;
/// <summary>
/// txtUserName 控件。
/// </summary>
@@ -119,43 +139,52 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtUserName;
/// <summary>
/// txtUserCode 控件。
/// txtJobNum 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtUserCode;
protected global::FineUIPro.TextBox txtJobNum;
/// <summary>
/// drpSex 控件。
/// txtUnit 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox drpSex;
protected global::FineUIPro.TextBox txtUnit;
/// <summary>
/// dpBirthDay 控件。
/// rblSex 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox dpBirthDay;
protected global::FineUIPro.RadioButtonList rblSex;
/// <summary>
/// drpMarriage 控件。
/// txtBirthday 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox drpMarriage;
protected global::FineUIPro.DatePicker txtBirthday;
/// <summary>
/// drpMaritalStatus 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpMaritalStatus;
/// <summary>
/// drpNation 控件。
/// </summary>
@@ -163,17 +192,8 @@ namespace FineUIPro.Web.Personal {
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox drpNation;
/// <summary>
/// drpUnit 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox drpUnit;
protected global::FineUIPro.DropDownList drpNation;
/// <summary>
/// Panel4 控件。
/// </summary>
@@ -182,7 +202,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel4;
/// <summary>
/// txtAccount 控件。
/// </summary>
@@ -191,7 +211,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtAccount;
/// <summary>
/// txtIdentityCard 控件。
/// </summary>
@@ -200,16 +220,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtIdentityCard;
/// <summary>
/// txtEmail 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtEmail;
/// <summary>
/// txtTelephone 控件。
/// </summary>
@@ -218,25 +229,25 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtTelephone;
/// <summary>
/// drpEducation 控件。
/// txtGraduate 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox drpEducation;
protected global::FineUIPro.TextBox txtGraduate;
/// <summary>
/// txtHometown 控件。
/// drpEduLevel 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtHometown;
protected global::FineUIPro.DropDownList drpEduLevel;
/// <summary>
/// drpPosition 控件。
/// </summary>
@@ -244,8 +255,17 @@ namespace FineUIPro.Web.Personal {
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox drpPosition;
protected global::FineUIPro.DropDownList drpPosition;
/// <summary>
/// drpPostTitle 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpPostTitle;
/// <summary>
/// Panel5 控件。
/// </summary>
@@ -254,16 +274,25 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel5;
/// <summary>
/// Image1 控件。
/// imgPhoto 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Image Image1;
protected global::FineUIPro.Image imgPhoto;
/// <summary>
/// filePhoto 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.FileUpload filePhoto;
/// <summary>
/// Form7 控件。
/// </summary>
@@ -272,7 +301,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Form Form7;
/// <summary>
/// txtPerformance 控件。
/// </summary>
@@ -281,7 +310,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextArea txtPerformance;
/// <summary>
/// Tab2 控件。
/// </summary>
@@ -290,7 +319,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Tab Tab2;
/// <summary>
/// SimpleForm2 控件。
/// </summary>
@@ -299,7 +328,7 @@ namespace FineUIPro.Web.Personal {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Form SimpleForm2;
/// <summary>
/// Window1 控件。
/// </summary>