文本框模式DateTimeLocal在部署到IIS

Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.文本框模式DateTimeLocal在部署到IIS

Parser Error Message: Cannot create an object of type 'System.Web.UI.WebControls.TextBoxMode' from its string representation 'DateTimeLocal' for the 'TextMode' property.

Source Error:

不工作,我把我的TextboxTextMode=DateTimeLocal,跑到我的项目,它运行良好。当我试图将我的应用程序部署到IIS并访问网页时,我会得到上述错误。 IIS.Net 4.0.30319。是否有一个原因,我得到它在localhost(在我的电脑上)而不是服务器(iss)?我该如何解决?

回答:

有在TextBoxMode Enumeration for ASP.NET 4.0只有三个成员:

  1. SINGLELINE:表示单行输入模式。
  2. 复线:代表多输入模式。
  3. 密码:表示密码输入模式。

还有相当多的数量,其中DateTimeLocal在TextBoxMode Enumeration for ASP.NET 4.5。

你的本地主机运行ASP.NET 4.5,显然你的服务器是不是......保证让您有ASP.NET 4.5服务器上安装。

更新:对于无法升级到ASP.NET 4.5的用户,您可能只需将TextBox的type="datetime-local"设置为备用。

回答:

服务器和工程安装asp.net 4.5!

以上是 文本框模式DateTimeLocal在部署到IIS 的全部内容, 来源链接: utcz.com/qa/266753.html

回到顶部