53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
using SteamWare;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace WebSCR
|
|
{
|
|
public partial class Menu : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
mod_squadre.Visible = false;
|
|
mod_AssSquadra.Visible = false;
|
|
}
|
|
}
|
|
|
|
protected void lbSetSquadra_Click(object sender, EventArgs e)
|
|
{
|
|
// mostra select squadre...
|
|
mod_squadre.Visible = true;
|
|
}
|
|
|
|
protected void lbResetSquadra_Click(object sender, EventArgs e)
|
|
{
|
|
// reset valori squadra...
|
|
memLayer.ML.emptyCookieVal("colorSquadraCurr");
|
|
memLayer.ML.emptyCookieVal("SquadraCurr");
|
|
memLayer.ML.emptyCookieVal("CodSquadra");
|
|
memLayer.ML.emptyCookieVal("DataRif");
|
|
memLayer.ML.emptyCookieVal("NumGg");
|
|
memLayer.ML.emptyCookieVal("Data");
|
|
memLayer.ML.emptyCookieVal("IdxImpegno");
|
|
memLayer.ML.emptyCookieVal("CodCliente");
|
|
memLayer.ML.emptyCookieVal("Indir");
|
|
memLayer.ML.emptySessionVal("Cliente");
|
|
Response.Redirect(devicesAuthProxy.pagCorrente);
|
|
}
|
|
|
|
protected void lbComponiSquadra_Click(object sender, EventArgs e)
|
|
{
|
|
mod_AssSquadra.Visible = true;
|
|
}
|
|
protected void lbInterventiSq_Click(object sender, EventArgs e)
|
|
{
|
|
Response.Redirect("Squadra");
|
|
}
|
|
}
|
|
} |