网络编程
位置:首页>> 网络编程>> Asp编程>> 如何提高Request集合的使用效率?

如何提高Request集合的使用效率?

  发布时间:2010-06-07 20:53:00 

标签:Request,效率

如何提高Request集合的使用效率?

以加快程序处理速度:

 

strTitle=Request.Form("Title")
strFirstName=Request.Form("FirstName") 
strLastName=Request.Form("LastName")  
If Len(strTitle) Then strTitle=strTitle & " "  
If strFirstName="" Then strFullName=strTitle & " " & strLastName 
Elseif Len(strFirstName)=1 Then 
strFullName=strTitle & strFirstName & ". " & strLastName 
Else 
strFullName=strTitle & strFirstName & " " & strLastName  
End If


 

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com