Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class Version
{
// Pro Version, set this flag to true if compiling the pro version
public static bool Pro = false;
// Update URL
public static string UpdateURL
{
get
{
string url = "[URL unfurl="true"]http://www.mysite.com/appname/updater.cfm";[/URL]
if (Pro)
url += "?Pro=1";
return url;
}
}
// Settings.xml Path
public static string SettingsFilename = "Settings.xml";
//#if DEBUG
// public static string SettingsPath = Application.StartupPath;
//#else
public static string SettingsPath = Application.UserAppDataPath;
//#endif
// "About ImageMapper..." Form Stuff
public const string AboutMessage = "######## is a product of #########, " +
"Inc. of Northville, Michigan. For more infomation on #########, please call us at (###) ###-####";
// Copyright
public static string Copyright = "Copyright ©2005-" + DateTime.Now.Year.ToString() + " ########## Inc.";
public static new string ToString()
{
return Application.ProductName + " " + Application.ProductVersion;
}
}