Files
NKC/NKC_WF/Index.aspx.cs
T
Samuele E. Locatelli cea540406b Fix redirect in subdir
2020-01-10 16:19:04 +01:00

17 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF
{
public partial class Index : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("site/Default");
}
}
}