2023-06-27
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
using BLL;
|
||||
using RestSharp;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace FineUIPro.Web.AttachFile
|
||||
{
|
||||
public partial class OnlineEditing : System.Web.UI.Page
|
||||
{
|
||||
#region 定义参数
|
||||
public string UserId
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["UserId"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["UserId"] = value;
|
||||
}
|
||||
}
|
||||
public string UserName
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["UserName"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["UserName"] = value;
|
||||
}
|
||||
}
|
||||
public string PCUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["PCUrl"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["PCUrl"] = value;
|
||||
}
|
||||
}
|
||||
public string CanSave
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["CanSave"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["CanSave"] = value;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!IsPostBack)
|
||||
{
|
||||
UserId = Request.Params["UserId"];
|
||||
CanSave = Request.Params["CanSave"];
|
||||
PCUrl = Request.Params["PCUrl"];
|
||||
UserName=BLL.Person_PersonsService.GetPersonsNameById(UserId);
|
||||
CanSave = "true";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user