Asp.net mvc 使用查询字符串批量打印mvc cshtml表单

Asp.net mvc 使用查询字符串批量打印mvc cshtml表单,asp.net-mvc,asp.net-mvc-3,Asp.net Mvc,Asp.net Mvc 3,我想根据带有参数的url批量打印mvc3 cshtml表单。例如,我想迭代URL,比如: for(int i=0; i<10: i++) print(http://mysite/myController/myAction/i); for(int i=0;i您可以修改以下项目,并添加将在页面中循环的代码: 您想在哪里打印?在服务器上?在客户端上?您好,Darin-这将从客户端打印。例如,从“父”窗体,用户将选择“全部打印”按钮。

我想根据带有参数的url批量打印mvc3 cshtml表单。例如,我想迭代URL,比如:

for(int i=0; i<10: i++) 
    print(http://mysite/myController/myAction/i);

for(int i=0;i您可以修改以下项目,并添加将在页面中循环的代码:


您想在哪里打印?在服务器上?在客户端上?您好,Darin-这将从客户端打印。例如,从“父”窗体,用户将选择“全部打印”按钮。