当前位置:编程学习 > asp >>

转换ASP到ASP+

答案:Converting to ASP+
The conversion process from ASP to ASP+ will depend on the complexity of your existing pages. Databases,
hence ADO, is a great example. ADO is now ADO+ and much different. Therefore if you want your database
pages to be ADO+ ASP+ pages, the learning curve is a little steeper. Your old code will work in most cases
with minimal adjustments (mainly structure).

Structure
The way you write your classic ASP pages will determine the level of technicality in converting your
classic ASP pages to ASP+. VBScript is a subset of VB but not the same as VB therefore minor changes,
mainly formatting, will be required. Structure will be the biggest issue. Get used to the Object Oriented
World. And get used to seeing cleaner code. VB and HTML coding must be separated where as with VBScript
you could intertwine it with HTML.

Mix and match HTML/VBScript
If you do this a lot inside your Functions and Subs,


<%
URL = request.servervariables("URL")
%>
<FONT FACE="arial" SIZE="2">
The URL was <%=URL%>


Then you have work to do. ASP+/VB does not allow ASP code to be mixed with HTML freely inside of functions
and Subroutines. They must be separated. In order for this to run in ASP+, all lines must be converted to
VB response.write statements. Not VBScript response.write statements. Notice the parenthesis. This will be
the most cumbersome part of converting ASP pages to ASP+ pages.

This would be the proper way with ASP+/VB


URL = request.servervariables("URL")
response.write ("<FONT FACE=""arial"" SIZE=""2"">)
response.write ("The URL was "& URL & "</FONT>")



Function Calls

With VBScript/ASP you write your functions like this

<%
Function doIt()
response.write ("Yes")
End Function


Function doIt2()
response.write ("Yes")
End Function%>


The following way is how you will need to write your functions in ASP+/VB. The most important thing here
is the <SCRIPT> tags.


<SCRIPT LANGUAGE="VB" RUNAT="server">

Function doIt()
response.write ("Yes")
End Function


Function doIt2()
response.write ("No")
End Function


</SCRIPT>

上一个:在局域网上如何测试IIS的安装成功?
下一个:在linux上使用ASP

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,