将html表单的数据发送到同一页面的另一个表单

时间:2017-10-24 23:34:04

标签: javascript c# jquery html asp.net-mvc

我已经读过它不可能用代码将数据加载到html表单。它必须是用户输入的。如果不对我的问题是在MVC项目上有2个引导模式。当用户在第一个模态上输入图像时( form1)。第一个模态隐藏和第二个模态出现。想要的是它预装了form1s图像数据。

如果那不可能使用从第一个模态输入form1的数据并在modal2上调用它?

Form1中

@using (Html.BeginForm("Upload", "Account", FormMethod.Post, new { @enctype = "multipart/form-data" }))
{
    <div class="form-group files color">
        @Html.TextBox("files", null, new { @class = "form-control", @type = "file", @id = "files", })
    </div>
} 

窗体2

@using (Html.BeginForm("Upload", "Account", FormMethod.Post, new { @enctype = "multipart/form-data" }))
{
    <div class="form-group">
        <label for="formGroupExampleInput">Açıklayıcı Başlık</label>
        @Html.TextBox("fileload", null, new { @type = "file", @id = "fileload" })
        @Html.TextArea("text", null, new { @type = "file", @id = "text", @class = "form-control", @rows = "3", @placeholder = "Yayını açıklayan bir yazı yaz" })
    </div>
    <input type="submit" name="name" class="btn btn-primary" value="Yükle" />
}

0 个答案:

没有答案