Software Programs and Projects

This Software Programs and Projects include programing tips and technology using different languages like VC++,ASP,JSP C#.Net,PHP,VB.Net,JavaScript,ASP.NET .Software Programs and Projects blog mainly support to software programmers and provide help through the mail.

How to get Appsettings Value From the Web.Config File ?

try
{
string strAlertThreshold = ConfigurationManager.AppSettings["AlertThreshold"].ToString();
m_iAlertThreshold = Convert.ToInt32(strAlertThreshold);
return true;
}
catch (Exception objException)
{
m_iAlertThreshold = 0;
throw new Exception(objException.Message.ToString());
}

return false;

tag-:How to get Appsettings Value From the Web.Config File

0 comments:

Post a Comment

Post a Comment