c#的windows应用程序中怎样才可以访问一个网页呢,还有应用程序的按钮怎么闪烁呢
c#的windows应用程序中怎样才可以访问一个网页呢,还有应用程序的按钮怎么闪烁呢?
问题比较幼稚,见笑了。
在线等
------解决方案-------------------- HttpWebRequest HttpWReq =
(HttpWebRequest)WebRequest.Create( "http://www.google.cn ");
HttpWebResponse HttpWResp = (HttpWebResponse)HttpWReq.GetResponse();
if (HttpWResp.StatusCode == HttpStatusCode.OK)
{
System.Console.WriteLine( "OK ");
}
HttpWResp.Close();
按钮闪烁,可以用Timer触发,用Image属性进行切换就OK了。