ASP.NET下的表單提交問題 (轉)

gugu99發表於2007-08-17
ASP.NET下的表單提交問題 (轉)[@more@]1.x程式碼:


  id="compute" methode="POST" action="2." runat="server" >
 id="Data1" runat="server" />+
 id="Data2" runat="server" />=?




2.aspx程式碼:


dim intData1
dim intData2
if request.querystring("Data1")<>" " and request.querystring("Data2")<>" " then
intData1=cint(request.querystring("Data1"))
intData2=cint(request.querystring("Data2"))
response.write(intData1)
response.write("+")
response.write(intData2)
response.write("=")
response.write(intData1 + intData2)
end if
%>



1.aspx無論method=post還是get都不提交到2.aspx,即使2.aspx不存在也不提示出錯,why? 用1.htm才可以成功提交,其程式碼如下:


 http-equiv="Content-Type" content="text/html; charset=gb2312">
 name="GENERATOR" content=" FrontPage 4.0">
 name="ProgId" content="FrontPage.Editor.Document">
New<i></i> Page<i></i> 1


 name="form" method="GET" action="2.aspx">
  

 type="text" name="Data1" size="20">


  

 type="text" name="Data2" size="20">


  

 type="submit" value="提交" name="B1">




是不是下表單隻能提交到本頁即1.aspx只能提交到1.aspx?


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10748419/viewspace-963027/,如需轉載,請註明出處,否則將追究法律責任。

相關文章