前些天一直在找免费的CMS开源代码,搜索了很多,大都是介绍CMS开源系统的的文章或者是安装的主要流程。再深的也有但是都是很多年前的文章。
我一个英语半吊子加MVC零基础只能像缓慢爬行的蜗牛一步步走了。
为了巩固我自己和给开始研究Umbraco的一点点帮助,我接下来会将我在开发过程中遇到的问题一一进行描述。
首先我做的是登录页面,登录页面有一个post提交的功能,不能使用input标签
@using (Html.BeginUmbracoForm("Login", "AccountSurface")) { @Html.HiddenFor(x => Model.returnUrl) <ul> <li class="mail"> @Html.TextBoxFor(x => Model.account, new { placeholder = "邮箱/电话", @class = "m-input", size = "30" }) </li> <li class="psw"> @Html.PasswordFor(x => Model.password, new { placeholder = "密码", @class = "p-input", size = "30" }) </li> <li class="login-option"> <span class="reset"><a>忘记密码?</a></span> <input class="input-auto" type="checkbox" checked="checked" name="autoLogin"/>下次自动登陆 </li> <li class="logon"><input type="submit" value="登陆" class="logon-text"/></li> <li class="register">还没有放心美帐号 <a>现在注册</a></li> </ul> }