if (!int.TryParse(Request.Params["id"] as string, out this.Id))
if(!int.TryParse(Request.Params["id"]asstring,outthis.Id)){JscriptMsg(350,230,"错误提示",...
if (!int.TryParse(Request.Params["id"] as string, out this.Id))
{
JscriptMsg(350, 230, "错误提示", "<b>出现错误啦!</b>您要修改的信息不存在或参数不正确。", "back", "Error");
return;
}
这个是什么意思?——
if (!int.TryParse(Request.Params["id"] as string, out this.Id)) 展开
{
JscriptMsg(350, 230, "错误提示", "<b>出现错误啦!</b>您要修改的信息不存在或参数不正确。", "back", "Error");
return;
}
这个是什么意思?——
if (!int.TryParse(Request.Params["id"] as string, out this.Id)) 展开
2个回答
展开全部
你用的是dtcms里的代码吧,
if (!int.TryParse(Request.Params["id"] as string, out this.Id))的意思是尝试着将
Request.Params["id"] 转换为int数据类型,并且赋值给已经定义好的int型数据id,int.TryParse这个方法如果转换失败,则返回false,并给Id赋值为0,转换成功则是true,并将转换成功的结果赋值给id。多说一句
Request.Params["id"] as string
其实不用as string,Request.Params["id"]获取到的就是字符串类型,不懂得追问即可
if (!int.TryParse(Request.Params["id"] as string, out this.Id))的意思是尝试着将
Request.Params["id"] 转换为int数据类型,并且赋值给已经定义好的int型数据id,int.TryParse这个方法如果转换失败,则返回false,并给Id赋值为0,转换成功则是true,并将转换成功的结果赋值给id。多说一句
Request.Params["id"] as string
其实不用as string,Request.Params["id"]获取到的就是字符串类型,不懂得追问即可
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询