我想创建一个应用程序来检查链接是否被阻塞。
我使用了linkfilter页面。 (https://steamcommunity.com/linkfilter/?url=)
我尝试这样做:
WebBrowser1.Url = https://steamcommunity.com/linkfilter/?url=(TextBox1.Text)
但我有两个错误。有没有办法做到这一点?
答案 0 :(得分:0)
您是否尝试将字符串值设置为实际字符串?:
WebBrowser1.Url = new Uri("https://steamcommunity.com/linkfilter/?url=" + TextBox1.Text);
或:
WebBrowser1.Url = new Uri(string.Format("https://steamcommunity.com/linkfilter/?url={0}", TextBox1.Text));