获取<%=@Html.DropDownList%>{“控制& # 39;button1 # 39;Button'
本文关键字:button1 Button 控制 @Html DropDownList% 获取 | 更新日期: 2023-09-27 18:09:16
该项目基于。net框架3.5,并拥有MVC框架1.0ViewModel是:
namespace MockBDPWorkflowTestApp.ViewModels
{
public class WorkFlowTestViewModel
{
public string processInstance { get; set; }
public string mail { get; set; }
public String[,] productCode = { { "GL", "0" }, { "PROP", "1" },
{ "Auto", "2" }, { "Other", "3"},
{ "Multi", "4" } };
public List<SelectListItem> products;
}
}
控制器为:
public class WorkFlowTestController : Controller
{
//
// GET: /WorkFlowTest/
public ActionResult OpenSubmission(string processId, string mailId)
{
var SubmissionModelView = new MockBDPWorkflowTestApp.ViewModels.WorkFlowTestViewModel{processInstance =processId, mail =mailId} ;
SubmissionModelView.products = new List<SelectListItem>();
SubmissionModelView.products.Add(new SelectListItem { Text = "GL", Value = "0", Selected = true });
SubmissionModelView.products.Add(new SelectListItem { Text = "Property", Value = "1" });
SubmissionModelView.products.Add(new SelectListItem { Text = "Package", Value = "2" });
SubmissionModelView.products.Add(new SelectListItem { Text = "Island Marine", Value = "3" });
return View("Submission", SubmissionModelView);
}
}
视图为:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<MockBDPWorkflowTestApp.ViewModels.WorkFlowTestViewModel>" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Submission</title>
</head>
<body>
<div>
<% using (Html.BeginForm())
{
%>
<div>
<table >
<tr>
<td>
<div id="SID">
<table id="tblID" cellpadding ="0" cellspacing ="0" border="1">
<tr>
<td width ="50%"> <label for="Process Inastance Id"> Process Inastance Id: </label> <%=@Html.TextBox("pInstance",@Model.processInstance) %></td>
<td width ="50%"> <label for ="Mail Id">Mail Id: </label> <%=@Html.TextBox("mail",@Model.mail) %> </td>
</tr>
</table>
</div>
<br /><br />
<table id="tblDet" cellpadding ="0" cellspacing ="0" >
<tr>
<td width="50%"> <label for="Submission Number"> Submission Number: </label> <%=@Html.TextBox("sNo") %></td>
<td width ="50%"> <label for ="Name Insured">Name Insured: </label> <%=@Html.TextBox("nameInsured") %> </td>
</tr>
<tr>
<td width="50%"> <label for="Broker Code"> Broker Code: </label> <%=@Html.TextBox("brokerCode") %></td>
<td width ="50%"> <label for ="Broker Name">Broker Name: </label> <%=@Html.TextBox("brokerName") %> </td>
</tr>
<tr>
<td width="50%"> <label for="Product Code"> Product Code: </label> <%=@Html.DropDownList("prodlist",@Model.products)%></td>
<td width ="50%"> <asp:Button ID="Button1" runat ="server" Text ="Add Product" /> </td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<% } %>
</div>
在视图中,我发现HTMLhelper下拉列表,但在运行时它给出了一个异常<%=@Html。"类型为'Button'的控件'Button1'必须放置在runat=server的表单标签中。"}
在MVC框架1.0中,做一个列表项下拉框的最好方法是什么
将<asp:Button ID="Button1" runat="server" />
替换为纯HTML <button>
或<input type="submit" />
元素