本文介绍了用户名!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我正在使用网站,而且我正在使用身份验证。这段代码使

起作用:

Page.User.Identity.Name;但我的问题是它有这个

格式:Domain / Loginname,但我只想要Loginname。我该怎么办?
呢?

谢谢。

Hi all,
I''m working with website and I''m using Authentication. This code makes
it work:
Page.User.Identity.Name; But my problem is that it comes in this
format: Domain/Loginname, yet I only wanted Loginname. What should I
do?
Thanks.

推荐答案



寻找斜线并取其余部分。

Look for a slash and take the rest of the string.




一点点编程...


string strLoginName = Page.User.Identity.Name.Split(' '/'')[1];

A tiny bit of programming...

string strLoginName = Page.User.Identity.Name.Split(''/'')[1];



这篇关于用户名!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-03 10:43