我在剃须刀页面上有以下链接:
@Html.ActionLink("Create New Profile", "Create", "Profile", new { @class="toplink" })
它出现在视图页面的源代码中,如下所示:
<a href="/admin/profile/create?length=7" class="toplink">Create New Profile</a>
当我点击链接时,URL 是这样的:
http://localhost:54876/admin/profile/create?length=7
我不想?length=7
。为什么会自动生成这个?