帮我查一下!谢谢(200分)

  • 主题发起人 主题发起人 mawei
  • 开始时间 开始时间
M

mawei

Unregistered / Unconfirmed
GUEST, unregistred user!
《html》
《script language="VBScript"》
《!--
Sub strip(str)
Dim i,tempstr
i=1
tempstr="WDerterW"
i=len(str)
tempstr=left(str,i-1)
tempstr=right(tempstr,i-2)
Response.write(tempstr)
End Sub
--》
《/script》
《title》rt
《/title》
《body》
《%=strip("FSDGSDG")%》
《/body》
《/html》
 
不太明白你是要ASP还是静态的HTML
要是ASP的话,函数定义的不对吧,应是《% 函数体 %》
 
还有一处问题《%=》就是 Response.write,正确的如下:
《html》
《%
Sub strip(str)
Dim i,tempstr
i=1
tempstr="WDerterW"
i=len(str)
tempstr=left(str,i-1)
tempstr=right(tempstr,i-2)
Response.write(tempstr)
End Sub
%》
《title》rt
《/title》
《body》
《%strip("FSDGSDG")%》
《/body》
《/html》
 
Come on mawei!!
 
接受答案了.
 
后退
顶部