Files
MoonPro.net/MP-Site/MappaStato.aspx.cs
T
Samuele E. Locatelli a3bff998e7 incluso MP-Site...
2016-11-14 12:40:04 +01:00

26 lines
670 B
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;
namespace MoonPro
{
public partial class MappaStato : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void lnkCambiaModo_Click(object sender, EventArgs e)
{
// passa alla pagina richiesta...
LinkButton lb = (LinkButton)sender;
Response.Redirect(lb.CommandArgument);
}
}
}