如何自动创建cshtml文件?

时间:2015-05-29 14:44:17

标签: asp.net-mvc-5

我正在使用MVC 5并希望像论坛一样自动创建cshtml文件。

我创建了一个允许用户发布新主题的页面。当用户提交时,我将从textarea获取数据并插入数据库。我做了那个控制。

我的问题是:如何创建一个cshtml文件来从数据库加载数据并自动显示它?

示例:我发布了一个标题为的新帖子:这是我的标题。点击提交后,它会转换为<a href="/NewThread/Here-is-my-title">Here is my title</a>

这意味着:控制器 NewThread 并且视图 Here-is-my-title.cshtml 已成功创建。

你能告诉我怎么做吗?

p / s:我希望这是一个明确的问题。谢谢!!!

1 个答案:

答案 0 :(得分:0)

  If u use the entity framework model....u dont need to create a cshtml file ...it is created automatically

Follow this steps

1. Right Click The controller

2. Goto Add Controller

3. Then Choose The "MVC5 Controller With Views using Entity Framework"

there u can automatically create the controller and view