private Boolean fnChkInternetConn()
{
Boolean bol = false;
System.Net.HttpWebRequest objreq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create("http://www.google.com");
try
{
System.Net.HttpWebResponse objres = (System.Net.HttpWebResponse)objreq.GetResponse();
objreq.Abort();
if (objres.StatusCode == System.Net.HttpStatusCode.OK)
{
bol = true;
}
}
catch (System.Net.WebException weberrt)
{
bol = false;
}
catch (Exception except)
{
bol = false;
}
return bol;
}
Subscribe to:
Post Comments (Atom)
Migrate SharePoint 2010 Infopath to SharePoint Online
Below are the steps to follow to migrate the Infopath data to SP Online.
-
In the SharePoint 2010 environment: 1. Stop the “Windows SharePoint Services Timer” service. To stop the service: a. Open the “Star...
-
To split a Nintex content database to enable one-to-one content for each, please follow below steps Create a new Nintex Workflow cont...
-
Below are the steps to follow to migrate the Infopath data to SP Online.
No comments:
Post a Comment