-2

私は次の見解を持っています:

<h2>enter the student name to search</h2>

@using (Html.BeginForm())
{
  <label>Search:</label>
  <input type="text" name="searchString" />
  <input type="submit" name="submit" />
}

ビューは次のコントローラーに対応します

namespace Searching.Controllers
{ 
   public class SearchController : Controller
   //somecode

   [HttpPost] 
   public ActionResult SearchIndex(FormCollection formCollection)
   {
      string searchString=formCollection["searchString"];
      var search = from m in db.Searches select m;
      if (!String.IsNullOrEmpty(searchString))
      {
        search = search.Where(s => s.Name.Contains(searchString));
      }
      return View(search);
    }
  }
}

コントローラー名は SearchController.cs で、フォームを渡すメソッドの名前は SearchIndex です。Html.BeginForm() 内のパラメーターは何であるべきか。私は初心者です。

4

1 に答える 1

2
Html.BeginForm("SearchIndex", "Search", .....)

これを読む必要があります: http://msdn.microsoft.com/en-us/library/dd410596.aspx

于 2012-05-04T10:42:34.863 に答える