Fixes 22527,24171. umbraco_client path no longer hard coded throughout code. More client dependency work. [TFS Changeset #57369]
29 lines
585 B
C#
29 lines
585 B
C#
using System;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Web;
|
|
using System.Web.SessionState;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.HtmlControls;
|
|
|
|
namespace umbraco
|
|
{
|
|
/// <summary>
|
|
/// Summary description for _Default.
|
|
/// </summary>
|
|
public partial class _Default : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, System.EventArgs e)
|
|
{
|
|
|
|
Server.Transfer("umbraco.aspx");
|
|
// Put user code to initialize the page here
|
|
}
|
|
|
|
|
|
}
|
|
}
|