📄 ch10-03-06.aspx
字号:
<URL>
<Head>
<Title>Ch10-03-06.aspx URLEncode方法和URLDecode方法</Title>
</Head>
<Body>
<Center><H2>URLEncode方法和URLDecode方法</H2></Center>
<%
' 编码
Dim UID As String, strA As String
UID = "陈峰棋"
strA = "深入浅出ASP.NET程序设计"
%>
<a Href="/ASP/Chap10/Ch10-03-06.aspx?UID=<% = UID %> &
strA = <% = strA %>">没有编码的结果</A>
<a Href="/ASP/Chap10/Ch10-03-06.aspx?UID=<% = UID %> &
strA = <% = Server.URLEncode(strA) %>">没有编码的结果</A>
</Body>
</URL>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -