29 lines
654 B
C#
29 lines
654 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using SteamWare;
|
|
|
|
namespace MedPred
|
|
{
|
|
public partial class Default : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// test login.... !!!FARE!!!
|
|
|
|
if (true)
|
|
{
|
|
// se tutto ok
|
|
memLayer.ML.setSessionVal("Gruppo", "BG");
|
|
Response.Redirect("Accettazione");
|
|
}
|
|
else
|
|
{
|
|
Response.Redirect("UserAdmin");
|
|
}
|
|
}
|
|
}
|
|
} |