一:Get:所有的页面链接请求都是Get,链接中带参数,如果在后台用了[httppost]限制,则参数获取不到。
如果一定要用Post限制,则需要在页面上先给该参数赋值,然后传到后台,post接收。
链接:http://localhost:64343/Account/Logon?ReturnUrl=%2fConferenceManagement%2fControl
后台接收
以前一直没注意过这个问题,〒_〒,今天记录下来
二:Entity Framework在生成数据库的时候,在cs文件中没有看到代码行。出现以下情况:
// Default code generation is disabled for model 'D:\Project\GBJudicialCommittee\DBLibrary\GBCommitteeModel.edmx'.
// To enable default code generation, change the value of the 'Code Generation Strategy' designer
// property to an alternate value. This property is available in the Properties Window when the model is
// open in the designer.
是因为EF的生成代码的默认设置为了none, 只需要在edmx的页面空白处右击--〉属性
就可以生成实例类及上下文了。 参考
作者:Joan
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。