Hi Everyone,
I am creating a custom module where I am trying to open a url but I am facing some issue. I am getting values from settings in the view.ascx.cs as follow:
string fb = "www.facebook.com";
if (Settings.Contains("Facebook_Url"))
{
fb = Settings["Facebook_Url"].ToString();
}
I want to get the Facebook_Url value from settings to view.ascx (Front end - design) page if it is possible.
Is anyone knows how to get the value from settings to view.ascx file. Your help will be appreciated.
Thank you !!!