“响应”的等效词是什么? VB.NET 中的 ASP 方法?
我正在尝试在我的桌面应用程序中实现 oAuth 身份验证。在我在互联网上找到的代码示例中,如下所示。我猜这是 ASP.Net 代码,但我在我的项目中使用 VB.Net。问题是我不知道 VB.Net 中 Request
的等效项是什么。
If Request("oauth_token") Is Nothing Then
MsgBox("Nothing")
Else
MsgBox("Something")
End If
I am trying to implement oAuth authentication in my desktop application. In a code example I found over the internet is like below. I guess it is ASP.Net code but I'm using VB.Net for my project. The problem is I don't know what is equivalent for Request
in VB.Net.
If Request("oauth_token") Is Nothing Then
MsgBox("Nothing")
Else
MsgBox("Something")
End If
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Request 和 Response 都是 VB 和 C# 中的对象:
http://msdn.microsoft.com/en-us/library/ms524716(v=VS.90).aspx
然而,尚不清楚您指的是哪一个;响应还是请求?
Both Request and Response are objects in VB as well as C#:
http://msdn.microsoft.com/en-us/library/ms524716(v=VS.90).aspx
It's unclear which one you're referring to however; Response or Request?