17 lines
440 B
C#
17 lines
440 B
C#
using System;
|
|
|
|
namespace MP_IO
|
|
{
|
|
public partial class enabled : System.Web.UI.Page
|
|
{
|
|
/// <summary>
|
|
/// caricamento pagina
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
Response.Redirect(string.Format("IOB/enabled/{0}", Request.QueryString["idxMacchina"]));
|
|
}
|
|
}
|
|
} |