Files
WebGIM/WebSites/WebGIM/Default.aspx.cs
T
samuele e0a96794cc - Aggiunta cartella DB
- Aggiunti progetti deploy/install (completare customizzazione installer!!!)

git-svn-id: https://keyhammer.ath.cx/svn/WebGIM/trunk@2 3e04ef4b-3b25-4b6c-be27-bb5389ca777b
2009-01-08 16:21:31 +00:00

19 lines
447 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;
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("./login.aspx");
}
}