Thanks for the info about the Mobile Controller. It seems like it will be a great feature when it is available.
Regarding the redirect issue, I don't believe it is misconfigured DNS... that would not cause a browser redirect. After some digging in your application's code, it seems the redirect is called in the Default.aspx.cs file located at C:\WebServers\Master\HomeDirectory\Default.aspx.cs
The code is as follows:
--------------------------------------
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(" newbielink:https://master.signage.me/MasterServer/MobileLogin.aspx [nonactive]");
}
}
--------------------------------------
The relevant portion being "Response.Redirect(" newbielink:https://master.signage.me/MasterServer/MobileLogin.aspx [nonactive]")". Further investigation revealed that this is also the case (virtually identical code) for the Business site as well. Can I assume that this is a holdover from your cloud offering? I would like to remove this redirect rule if possible or point it to my own domain.