本文整理汇总了C#中Service.GetUserName方法的典型用法代码示例。如果您正苦于以下问题:C# Service.GetUserName方法的具体用法?C# Service.GetUserName怎么用?C# Service.GetUserName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Service
的用法示例。
在下文中一共展示了Service.GetUserName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
Post post = null;
try
{
int postId = Convert.ToInt32(Request.QueryString["id"]);
Service service = new Service();
post = service.GetPostByPostId(postId);
post.Author = service.GetUserName(post.MemberId);
if ((int)Membership.GetUser().ProviderUserKey == post.MemberId || Roles.IsUserInRole("administrator"))
{
EditPostButton.Visible = true;
DeletePostButton.Visible = true;
}
}
catch
{
//Empty. "Eats" the exception.
}
if (post != null)
{
PostLabel.Text = Server.HtmlEncode(post.Value);
AuthorLabel.Text = Server.HtmlEncode(post.Author);
EditPostButton.PostBackUrl = String.Format("~/Edit.aspx?id={0}", post.PostId);
EditPostButton.Enabled = true;
DeletePostButton.CommandArgument = post.PostId.ToString();
DeletePostButton.Enabled = true;
string prompt = String.Format("return confirm(\"{0}\");", "Are you sure you want to delete '{0}'?");
DeletePostButton.OnClientClick = String.Format(prompt, post.Value);
DeletePostButton.CssClass = "delete-action";
DeletePostButton.Attributes.Add("data-type", "the post");
DeletePostButton.Attributes.Add("data-value", post.Value);
}
else
{
Response.Redirect("~/NotFound.aspx", false);
}
}
示例2: CommentListView_ItemDataBound
protected void CommentListView_ItemDataBound(object sender, ListViewItemEventArgs e)
{
LinkButton EditButton;
LinkButton DeleteButton;
EditButton = (LinkButton)e.Item.FindControl("EditButton");
DeleteButton = (LinkButton)e.Item.FindControl("DeleteButton");
Comment activeComment = (Comment)e.Item.DataItem;
if (!Page.IsPostBack)
{
if (activeComment.MemberId == (int)Membership.GetUser().ProviderUserKey || Roles.IsUserInRole("administrator"))
{
EditButton.Visible = true;
DeleteButton.Visible = true;
}
}
Service service = new Service();
string name = service.GetUserName(activeComment.MemberId);
Label label = new Label();
label = (Label)e.Item.FindControl("AuthorCommentLabel");
if (label != null)
{
label.Text = name;
}
}