0
 @using (Html.BeginRouteForm("ProductSearch", FormMethod.Get))
    {
        <div class="page-title">
            <h1>Search</h1>
        </div>
        <div class="clear">
        </div>
        <div class="search-inut">
   //here there is code for product box of each product satisfying search condition
}

すべての製品はクエリ文字列として渡されますが、それを回避する方法はありますか? 例えば

http:\localhost:54632\mysite\q=sugar&sugar 5kg=1&sugar free=1.............

検索結果のすべての製品がクエリ文字列に追加されます

ありがとう

4

1 に答える 1

1

変化する

    //here there is code for product box of each product satisfying search condition
}

}
//here there is code for product box of each product satisfying search condition

MVC は Web フォーム (ページ全体がフォーム内にある) とは異なり、パーツをフォームの外に安全に配置できます。

于 2013-06-18T13:25:13.160 に答える