43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using SteamWare;
|
|
using System;
|
|
|
|
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");
|
|
}
|
|
|
|
|
|
}
|