mvc用模型创建一个查询字符串数组

时间:2013-06-05 07:23:42

标签: c# asp.net-mvc query-string

我有一个关于电子商务的mvc项目。现在我正在使用过滤器在剃须刀页面上进行产品订购。例如,当页面首次加载时,我想首先创建我的操作链接查询字符串。然后点击链接更改新值。

例如首先加载我的链接,

<a href="~/CategoryName?newproduct=610">New Products</a>
<a href="~/CategoryName?sex=610">Women</a>
<a href="~/CategoryName?sex=611">Men</a>
<a href="~/CategoryName?sex=612">Unisex</a>
..........

其他链接必须更改然后我点击链接,例如点击新产品,

<a href="~/CategoryName?newproduct=610">New Products</a>
<a href="~/CategoryName?newproduct=610&sex=610">Women</a>
<a href="~/CategoryName?newproduct=610&sex=611">Men</a>
<a href="~/CategoryName?newproduct=610&sex=612">Unisex</a>
...................

首次加载, enter image description here

然后点击链接,

enter image description here

更改查询字符串,使用新的查询字符串更改其他链接....

enter image description here

并点击其他链接,

enter image description here

我在剃刀页面上发送模型。现在如何为查询字符串数组创建模型和控制器?我该怎么用jquery或......?我找不到关于这个问题的样本。谢谢你的回复。

0 个答案:

没有答案