我有一个网站,我想在其中实现搜索功能。所以我添加了下面的代码,以便在我的 html 页面中有一个搜索框
<form id="search" method="post" action="Results.aspx">
<input id="txtSearchKey" type="text" name="txtSearchKey" />
<input id="Submit1" type="submit" value="submit" /><br />
<br />
</form>
在 Results.aspx 中,我想读取用户在 txtSearchKey 文本框中输入的值。这样做的理想方法是什么?我用了
string strKey = Request.Form["txtSearchKey"].ToString();
但它抛出一个空引用异常。
我不想在 ASP.NET 中拥有所有页面。我只想将结果页面作为 ASP.NET