bremen_short_url/BackEnd/user-profile-settings.aspx.cs

26 lines
672 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class BackEnd_user_profile_settings : webBase
{
protected void Page_Load(object sender, EventArgs e)
{
userdata objUser = new userdata(objAuth.user_uid);
user_name.InnerText = objAuth.user_name;
input_name.Value = objAuth.user_name;
input_email.Value = objAuth.user_email;
user_pic.Attributes["img_src"] = objUser.user_picurl;
if (objUser.user_type == "N")
{
pass1.Visible = false;
pass2.Visible = false;
}
}
}