Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击应用程序中的链接时出现以下错误,“输入字符串的格式不正确”。尝试多次更改内容但没有运气,所以这是我的最后手段。
这是引发错误的代码行
问题Request[UrlParameters.UrlParameterName.ComplianceActionRisk]不是 int 类型。因此,如果它兼容,则Parse使用TryParse它将值转换为 int 而不是 using ,否则-1将使用默认值 -
Request[UrlParameters.UrlParameterName.ComplianceActionRisk]
Parse
TryParse
-1
int ComplianceAction = -1; Int32.TryParse(Request[UrlParameters.UrlParameterName.ComplianceActionRisk], out ComplianceAction);