Files
MoonPro.net/MP-Admin/WebUserControls/mod_main_help.ascx.cs
T
Samuele E. Locatelli 0f8f41aaaa Aggiunto progetto MP-ADMIN
2016-11-11 19:16:20 +01:00

52 lines
1.4 KiB
C#

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using SteamWare;
public partial class mod_main_help : ApplicationUserControl
{
protected override void Page_Load(object sender, EventArgs e)
{
// sistemo i buttons...
btnGestOdl.Text = traduci("btnGestOdl");
btnAnagArticoli.Text = traduci("btnAnagArticoli");
btnGestDatiMacchina.Text = traduci("btnGestDatiMacchina");
btnApprovaTC.Text = traduci("btnApprovaTC");
btnApprovaProd.Text = traduci("btnApprovaProd");
}
protected void btnGestOdl_Click(object sender, EventArgs e)
{
Response.Redirect("~/gestioneODL.aspx");
}
protected void btnAnagArticoli_Click(object sender, EventArgs e)
{
Response.Redirect("~/anagArticoli.aspx");
}
protected void btnGestDatiMacchina_Click(object sender, EventArgs e)
{
Response.Redirect("~/gestioneDatiMacchine.aspx");
}
protected void btnApprovaTC_Click(object sender, EventArgs e)
{
Response.Redirect("~/approvazioneODL.aspx");
}
protected void btnApprovaProd_Click(object sender, EventArgs e)
{
Response.Redirect("~/approvazioneProd.aspx");
}
}