VB.Net-“ NullReferenceException未由用户代码处理”

时间:2019-05-03 17:12:59

标签: visual-studio-2010

AlterarSenha.aspx的使用权仍然存在:

mpeLogin.Show();             TxtSenhaAtual.Focus();

        if (!Page.IsPostBack)
        {
            HttpContext context = HttpContext.Current;
            hfUsuario.Value = Convert.ToString(context.Items["Usuario"]);
            hfIdUsuario.Value = Convert.ToString(context.Items["IdUsuario"]);

  erro ->  Url = Context.Items["ReturnUrl"].ToString();

            if (HttpContext.Current.User.Identity.IsAuthenticated)
            {
                hfUsuario.Value = HttpContext.Current.Profile.GetPropertyValue("Usuario").ToString();
                hfIdUsuario.Value = HttpContext.Current.Profile.GetPropertyValue("Id").ToString();
            }
        }

Quando eu vou rodar mostra esse erro,tem algummétodopara resolver isso。 Muito obrigado。

0 个答案:

没有答案