我有一张要老师填写的表格,该表格包含数据库中的字段,有些表格内容将被删除,我不想将它们存储在数据库中。所以我将文本文件创建用于这些字段,所以我希望将文本文件路径保存在数据库中。创建文件以及所有文件,这又是如何同时发送存储在模型和文件中的实际数据?
到目前为止,这是我的代码:
-p, --[add-]plugin PLUGIN[:PATH_OR_URL]
Register a plugin.
Built-in formatter PLUGIN types: junit,
html, pretty, progress, json, usage, rerun,
testng. Built-in summary PLUGIN types:
default_summary, null_summary. PLUGIN can
also be a fully qualified class name, allowing
registration of 3rd party plugins.
--add-plugin does not clobber plugins of that
type defined from a different source.
这是创建文本文件的部分。
<form id="form1" method="post">
<lable>teacher's name </lable>
<input id="MyName" name="MyName" type="text" />
@for (int i = 0; i < 2; i++)
{
<div>
<table>
<tr>
<td>First Name:</td>
<td><input id="FirstName" name="FirstName"
type="text" /></td>
</tr>
<tr>
<td>Last Name:</td>
<td><input id="LastName" name="LastName" type="text" /></td>
</tr>
<tr>
<td>Email:</td>
<td><input id="Email" name="Email" type="text" /></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</div>
}
<input type="submit" value="Submit" name="submit" id="txtUploadFile"/>
<div>
@if (result != "")
{
<p>Result: @result</p>
}
</div>
</form>