ASP.NET错误CS1026:)预计?

时间:2010-11-18 16:25:50

标签: asp.net

为什么我在下面的行中看到了CS1026错误:)?

<%=Html.BeginForm("AddAdvertisement", "Advertisement"){%> //here
     hello
<%} %>

1 个答案:

答案 0 :(得分:4)

我认为你想要这个(docs):

<% using(Html.BeginForm("AddAdvertisement", "Advertisement")) { %> //here
     hello
<% } %>