asp3中的url编码
如何在asp3中设置url编码 类似于 asp.net 代码
Public Shared Function UrlEncode ( _
str As String, _
e As Encoding _
) As String
如何传递编码类型?
how can I set the url encode in asp3
similar to the asp.net code
Public Shared Function UrlEncode ( _
str As String, _
e As Encoding _
) As String
how can I pass the encoding type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需调用 UrlEncode 并指定编码
http://msdn.microsoft 作为第二个参数。 com/en-us/library/h10z5byc.aspx
.net 3 支持相同的重载,所以你应该很好。
Simply call UrlEncode and as the second parameter specify the encoding
http://msdn.microsoft.com/en-us/library/h10z5byc.aspx
This same overload is supported in .net 3 so you should be good.
对经典的 asp 使用 Server.URLEncode(string)。
Use Server.URLEncode(string) for classic asp.
您也可以 UriEncode 但此功能仅在 javascript 中存在,但您可以在 asp-classic 中切换语言
You could also UriEncode but this function is only pressent in javascript but you can switch language in asp-classic