Because of the early establishment of the website for the dish, and the time when I was just getting in touch with the computer, I did not think too long. I chose the ASP Website.Program: New cloud CMS.
It's a pity now... WordPress is so convenient today.
Recently I found a new cloud bug. Because the new cloud has been around for a long time, and ASP is basically outdated, I cannot find the answer on the Internet. So I 'd like to share with you about this, hope to help the webmaster who is struggling to use the new cloud CMS.
The problem is as follows:
When entering software in the background, if the address contains the & symbol, it is automatically converted to & amp; During saving, but it does not convert the & amp; and cannot jump.
For example, enter www.xxx.com/share? SID = 1 & uid = 2. Save it as www.xxx.com/share? SID = 1 & amp; uid = 2. After the software is successfully released, it is loaded to the software information interface, but it is still www.xxx.com/share? SID = 1 & amp; uid = 2. When you click Download, the page cannot jump correctly, resulting in an error.
In fact, this is not difficult to solve, but for some webmasters who do not understand ASP source code, there is no way to do it!
In fact, you do not understand ASP, But you learned programming from VB. asp is the web version of VB, so you can barely understand it.
After research, to solve this problem, you only need to find the [website root directory] à [Soft folder] à [download. ASP file], and then in [download. in the ASP file], find response. redirect (DownLoadURL)Code, Replace with response. Redirect (replace (DownLoadURL, "& amp.
If you are not familiar with it, please contact me. I hope this article will help readers!