Solution: index.cshtml 这个页面
insert into
目前成都创新互联公司已为千余家的企业提供了网站建设、域名、雅安服务器托管、网站托管运营、企业网站设计、子长网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
Solution: delete the file in //c$/document/IISExpress. Try to debug/run the solution again.
Solution: rebuild the solution, then try to debug/run the solution again.
reference: http://www.ridilabs.net/post/2018/11/02/Could-not-find-a-part-of-the-path-rosyln-cscexe.aspx#.XVoBPeQUlMs
Inconsistent accessibility: parameter type ‘MailTask’ is less accessible than method ‘’
Solution: project Model class prefix add a keyword Public
Sequence contains no elements
advise:
When you get the LINQ error "Sequence contains no elements", this is usually because you are using the First() or Single() command rather than FirstOrDefault() and SingleOrDefault().
Solution:
Change Single() to SingleOrDefault()
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
original: cbxpmn. valueMember = dt.rows[0]["Menu_Name"].tostring();
cbxpmn.DisplayMember = dt.Rows[0]["Menu_Name"].tostring();
Update: cbxpmn.ValueMember = "Menu_Name";
cbxpmn.DisplayMember = "Menu_Name";