2009-06-19 07:39:16 +00:00
|
|
|
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;
|
2010-01-28 12:51:46 +00:00
|
|
|
using umbraco.IO;
|
2009-06-19 07:39:16 +00:00
|
|
|
|
|
|
|
|
namespace umbraco.presentation.config.splashes
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// noNodes page is used in case Umbraco doesn't contain any content nodes.
|
|
|
|
|
/// noNodes displays a standard error message to inform how to fix the problem.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class noNodes : System.Web.UI.Page
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Handles the Load event of the Page control.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender">The source of the event.</param>
|
|
|
|
|
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
2009-07-26 15:13:15 +00:00
|
|
|
ClientLoader.DataBind();
|
2010-03-03 08:06:27 +00:00
|
|
|
bt_launch.Attributes.Add("onclick", "document.location.href='" + ResolveUrl(SystemDirectories.Umbraco) + "/';");
|
2010-01-28 12:51:46 +00:00
|
|
|
vid1.Src = SystemDirectories.Install + "/images/packagesVid1.png";
|
|
|
|
|
vid2.Src = SystemDirectories.Install + "/images/packagesVid2.png";
|
2009-06-19 07:39:16 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|