使用强类型Razor视图通过Html.BeginForm传递值

时间:2013-05-29 11:44:01

标签: c# asp.net-mvc-3 razor

我正在研究asp.net mvc 3应用程序,我遇到了这个问题。我在强类型剃刀视图中工作,现在我写了一个带有删除/上传选项的简单图像库。我按照一个工作示例,其中更新和删除的逻辑位于Html.BeginForm内。我也有另一个表单助手,这里是删除了一些代码的视图(我的意思是我认为与此问题无关的代码):

@model List<DataAccess.MCS_DocumentFields>

@{
    ViewBag.Title = "Document";
}
<div id="alabala">
<div id="drawForm">
@using (Html.BeginForm("UpdateDocument", "Forms", FormMethod.Post))
{
    <table border="1" id="drawDocument">
        <colgroup>
            <col span="1" style="width: 10%;" />
            <col span="1" style="width: 40%;" />
            <col span="1" style="width: 25%;" />
            <col span="1" style="width: 25%;" />
        </colgroup>
        @Html.Partial("_PartialHeader", Model)
        @Html.Partial("_PartialDrawing", Model)
        @Html.Partial("_PartialBody", Model)
        @Html.Partial("_PartialFooter", Model)

    </table>
    if (ViewBag.Status == 1)
    {
        <button type="submit" id="submitDocument">Save</button> 
        <button style="float:right;" id="finalizeDocument">Finish</button>  
    }
    else
    { 
        @Html.ActionLink("Назад", "Index")
    }
}
</div>

<div id="imageContainer">
<div id="imageGallery" style="overflow: scroll">
 <img src="file:\\10.3.12.237\MaritsaEast\upload_McsTemp\10005\docPicTest1.jpg" alt="docImg" style="width: 190px; height: auto"/>
 <a href=#>Delete</a>
 <img src="file:\\10.3.12.237\MaritsaEast\upload_McsTemp\10005\docPicTest2.jpg" alt="docImg" style="width: 190px; height: auto"/>
 <a href=#>Delete</a>
 <img src="file:\\10.3.12.237\MaritsaEast\upload_McsTemp\10005\docPicTest3.jpg" alt="docImg" style="width: 190px; height: auto"/>
 <a href=#>Delete</a>
 <img src="file:\\10.3.12.237\MaritsaEast\upload_McsTemp\10005\docPicTest4.jpg" alt="docImg" style="width: 190px; height: auto"/>
 <a href=#>Delete</a>
 <img src="file:\\10.3.12.237\MaritsaEast\upload_McsTemp\10005\docPicTest5.jpg" alt="docImg" style="width: 190px; height: auto"/>
 <a href=#>Delete</a>
</div>

@using (Html.BeginForm(new { Id = 1005})
{
    <input type="file" name="datafile" id="file" onchange="readURL(this);" />
    <input type="button" name="Button" value="Качи" id="UploadButton" onclick="fileUpload(this.form,'/forms/upload','upload'); return false;"/>
    <div id="upload" style="display: inline-block;">
        <img id="blah" src="#" alt="your image" style="display:none;"/>
    </div>
}
</div>
</div>

这:@model List<DataAccess.MCS_DocumentFields>保存同一文档的记录,因此我想要实现的是将Model[0].Id作为参数传递到此处:@using (Html.BeginForm(new { Id = 1005})。现在我很难对它进行编码以使其正常工作,但是如果用这篇文章同时实现两者并不太困难将是完美的。这是我UploadFormsController方法的开头:

 public void Upload()
        {
            WebImage UploadImage = WebImage.GetImageFromRequest();
            long DocumentID;
            if (!long.TryParse(Request.Form["Id"], out DocumentID))
            {
                return;
            }
            //and more code follows..

我看到这是从表单中获取值的一种方法,但我找不到通过它的方法。但是,如果你有另一个想法,没有问题。实施取决于我的决定。

2 个答案:

答案 0 :(得分:1)

我找到的解决方案是:

@using (Html.BeginForm("Upload", "Forms", FormMethod.Post))
{

    <input name=@Model[0].DocumentId type="hidden" />

    <input type="file" name="datafile" id="file" onchange="readURL(this);" />
    <input type="button" name="Button" value="Качи" id="UploadButton" onclick="fileUpload(this.form,'/forms/upload','upload'); return false;"/>
    <div id="upload" style="display: inline-block;">
        <img id="blah" src="#" alt="your image" style="display:none;"/>
    </div>
}

然后在我的控制器中进行了这项更改:

 public ActionResult Upload(FormCollection collection)
        {
            WebImage UploadImage = WebImage.GetImageFromRequest();
            long documentID;
            string finalImageName = null;
            if (!long.TryParse(collection.AllKeys[0], out documentID))

可能不是最好的方法,但是到目前为止唯一一个完成工作的方法。

答案 1 :(得分:0)

<input type="hidden" name="Id" value="@Model[0].Id"/><!--Add this line-->
if (ViewBag.Status == 1)
{
    <button type="submit" id="submitDocument">Save</button> 
    <button style="float:right;" id="finalizeDocument">Finish</button>  
}
else
{ 
    @Html.ActionLink("Назад", "Index")
}