46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
using System;
|
|
|
|
|
|
public partial class error : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
string utenteWindos = "";
|
|
string pb = "";
|
|
string codApp = "";
|
|
string VerSim = "";
|
|
string AbilitazionePrimaria = "";
|
|
string utenteAutorizzato = string.Empty;
|
|
|
|
if (Request.QueryString.Get("UtenteWindows") != null)
|
|
utenteWindos = Request.QueryString.Get("UtenteWindows");
|
|
|
|
if (Request.QueryString.Get("UtentePB") != null)
|
|
pb = Request.QueryString.Get("UtentePB");
|
|
|
|
if (Request.QueryString.Get("CodiceApplicazione") != null)
|
|
codApp = Request.QueryString.Get("CodiceApplicazione");
|
|
|
|
if (Request.QueryString.Get("VersioneSIMPB") != null)
|
|
VerSim = Request.QueryString.Get("VersioneSIMPB");
|
|
|
|
|
|
if (Request.QueryString.Get("AbilitazionePrimaria") != null)
|
|
AbilitazionePrimaria = Request.QueryString.Get("AbilitazionePrimaria");
|
|
|
|
if (Request.QueryString.Get("UtenteAutorizzato") != null)
|
|
utenteAutorizzato = Request.QueryString.Get("UtenteAutorizzato");
|
|
|
|
lblUtenteWindows.Text = utenteWindos;
|
|
lblVerSIMPB.Text = VerSim;
|
|
lblPb.Text = pb;
|
|
lblCodiceApplicazione.Text = codApp;
|
|
lblAbilitazionePrimaria.Text = AbilitazionePrimaria;
|
|
lblUtenteAutorizzato.Text = utenteAutorizzato;
|
|
|
|
|
|
}
|
|
|
|
}
|