我正在開發一個使用asp.net c#的網站,我想在頁面中放置一個表單。現在aspx頁面有表單標籤,我不想在這裏嵌套另一個表單,因爲它會使我的html無效。但我需要這種形式來使用GET而不是POST。我知道我可以更改asp:按鈕中的回髮網址。這可以在沒有使用邏輯的情況下完成嗎?postbackurl使用get而不是post
- 更改方法得到的只是對這種形式並不在頁面上
- 改變每一件事情的目標_blank如果可能的話。
在我想要的html的例子。
<form action="http://maps.google.co.uk/maps" method="get">
<p><label for="saddr">Your postcode</label>
<input type="text" name="saddr" id="saddr" value="" />
<input type="submit" value="Go" />
<input type="hidden" name="daddr" value="[destination]" />
<input type="hidden" name="hl" value="en" /></p>
</form>