如何在标签或Web浏览器中显示Web中的返回值

时间:2014-07-17 13:33:51

标签: c# asp.net

如何在标签或网络浏览器中显示网页上的返回值? 代码:

public static string FormatTelephoneNumber(string value)
{
    value = new System.Text.RegularExpressions.Regex(@"\D").Replace(value, string.Empty);
    value = value.TrimStart('1');

    if ((!string.IsNullOrEmpty(value)) && (value.Length >= 12))
        return Convert.ToInt64(value).ToString("{0:+234 ### ### ####}");
    if (value.Length == 10)
        return Convert.ToInt64(value).ToString("{0:+1 ### ### ####}");
    if (value.Length != 10)
        return Convert.ToInt64(value).ToString("0:+44 ###-###-#### " + new String('#', (value.Length - 10)));
    if (value.Length == 10)
        return Convert.ToInt64(value).ToString("{0:+233 ### ### ###}");

    return value;
}

1 个答案:

答案 0 :(得分:0)

假设这是一个Web窗体项目(因为您未在问题中提供任何详细信息)

Code Behind(.aspx.cs)

string input="5555555555";
MyLabel.Text = FormatTelephoneNumber(input);

页面(.aspx)

<asp:Label runat="server" id="MyLabel" />

只需将其分配给标签的文本即可。如果您需要更多帮助,您应该解释您在问题中想要提出的问题,并解释您尝试过的内容。