谁能帮我解释一下这个asp的代码啊,我都看不懂啊,我想把这个asp的代码写成asp.net的,看不懂完全不能写。
FunctionGetPicPath(userId)filexist=Falsepicfile="/avatar/avatar_"&trimnull(userId)&"....
Function GetPicPath(userId)
filexist=False
picfile="/avatar/avatar_"&trimnull(userId)&".jpg"
If IsNumeric(trimnull(userId)) then
set deletefilefso=server.CreateObject("scripting.filesystemobject")
if deletefilefso.FileExists(server.mappath("/avatar/avatar_"&trimnull(userId)&".jpg")) then
filexist=true
else
filexist=false
end If
set deletefilefso=Nothing
End If
If Not filexist Then
picfile="/images/defaultIMG.gif"
End If
GetPicPath = picfile
End Function 展开
filexist=False
picfile="/avatar/avatar_"&trimnull(userId)&".jpg"
If IsNumeric(trimnull(userId)) then
set deletefilefso=server.CreateObject("scripting.filesystemobject")
if deletefilefso.FileExists(server.mappath("/avatar/avatar_"&trimnull(userId)&".jpg")) then
filexist=true
else
filexist=false
end If
set deletefilefso=Nothing
End If
If Not filexist Then
picfile="/images/defaultIMG.gif"
End If
GetPicPath = picfile
End Function 展开
3个回答
展开全部
机器没装vs,没测试
public string GetPicPath(string userId)
{
var filexist = false;
var picfile="/avatar/avatar_" + userId +".jpg";
int iUseId;
if(Int32.TryParse(userId,out iUseId))
{
if(System.IO.File.Exist(System.Web.HttpContext.Current.Request.MapPath(picfile)))
{
filexist =true;
}
else
{
filexist =false;
}
}
if(!filexist)
{
picfile="/images/defaultIMG.gif";
}
return picfile;
}
public string GetPicPath(string userId)
{
var filexist = false;
var picfile="/avatar/avatar_" + userId +".jpg";
int iUseId;
if(Int32.TryParse(userId,out iUseId))
{
if(System.IO.File.Exist(System.Web.HttpContext.Current.Request.MapPath(picfile)))
{
filexist =true;
}
else
{
filexist =false;
}
}
if(!filexist)
{
picfile="/images/defaultIMG.gif";
}
return picfile;
}
展开全部
它的作用就是获取图片路径
追问
你会用asp.net写出这段语句吗?
追答
不会,我只能看懂
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个不是asp.net 好像是脚本把。。。
追问
这个是asp的代码,我要把这个写成asp.net的,但是不会啊,亲,你会吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询