Neo*_*Neo 1 asp.net-mvc stored-procedures entity-framework asp.net-mvc-3
我有mvc 3应用程序,其中在Index.cshtml视图上有一种输入形式。也有一个具有的Webgrid edit,delete按钮
根据这些操作链接,我需要更改我的提交按钮文本。我如何在homecontroller.cs中实现此目标?只使用一个为所有视图edit,insert。
检查homecontroller.cs中的useraction
public ActionResult Index(string userAction)
{
if (userAction == "Edit" )
{
}
if (userAction == "Delete" )
{
}
}
View code:
@model Mapping.Models.SecurityIdentifierMappingViewModel
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
<fieldset>
<legend>Mapping</legend>
<div class="editor-label">
@Html.Label("Pricing SecurityID")
</div>
<div class="editor-field">
@Html.HiddenFor(model => model.MappingControls.Id)
@Html.DropDownListFor(model => model.MappingControls.PricingSecurityID,
new SelectList(Model.PricingSecurities, "Value", "Text"),
"Select SecurityID"
)
@Html.ValidationMessageFor(model => model.MappingControls.PricingSecurityID)
</div>
<div class="editor-label">
@Html.Label("CUSIP ID")
</div>
<div class="editor-field">
@Html.DropDownListFor(model => model.MappingControls.CUSIP,
new SelectList(Model.CUSIPs, "Value", "Text"),
"Select CUSIP"
)
@Html.ValidationMessageFor(model => model.MappingControls.CUSIP)
</div>
<div class="editor-label">
@Html.Label("Calculation")
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.MappingControls.Calculation)
@Html.ValidationMessageFor(model => model.MappingControls.Calculation)
</div>
<p>
<input type="submit" value="Insert" />
</p>
</fieldset>
}
on same page i have a webgrid I need to change text of submit button to Update when I clicked on webgrid's edit button. i'm newbie.
Webgrid code
@model IEnumerable<Mapping.Models.SecurityIdentifierMapping>
@{
ViewBag.Title = "Mapping";
WebGrid grid = null;
if (Model.Count() > 0)
{
grid = new WebGrid(source: Model,
defaultSort: "Id",
canPage: true,
canSort: true,
rowsPerPage: 10);
}
}
<h3>
Mapping Web Grid</h3>
@if (grid != null)
{
@grid.GetHtml(
tableStyle: "grid",
headerStyle: "head",
alternatingRowStyle: "alt",
columns: grid.Columns(
grid.Column("", header: null, format: @<text>@Html.ActionLink("Edit", "Index", new { uid = (int)item.id, userAction = "Edit" })
@Html.ActionLink("Delete", "Index", new { uid = (int)item.id, userAction="Delete" }, new { @class = "Delete" })</text>),
grid.Column("PricingSecurityID"),
grid.Column("CUSIP"),
grid.Column("Calculation")
)
)
}
Run Code Online (Sandbox Code Playgroud)
enter code here在控制器中设置一个ViewBag属性:
public ActionResult
Index(string userAction)
{
if (userAction == "Edit"
)
{
ViewBag.SubmitValue = "Edit";
}
if (userAction == "Delete" )
{
ViewBag.SubmitValue = "Delete";
}
}
Run Code Online (Sandbox Code Playgroud)
..,然后在视图中显示该值:
<input type="submit" value="@ViewBag.SubmitValue" />
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7775 次 |
| 最近记录: |