我正在更改onclick()
事件的用户个人资料图片。它正在变得
保存在iis服务器中,但是当它没有反映aspx页面时。当我退出并再次登录时。它正在更新。 这是我的代码:
Default.aspx的
<input type="file" id="userPicFileUpload" runat="server" />
<button runat="server" class="btn btn-info editable-submit" id="btnChangeUserPic" onclick="ChangeUserPic();">Change</button>
Default.aspx.cs
protected void btnChangeUserPic2_Click(object sender, EventArgs e)
{
try
{
string filePath = Server.MapPath("~/Upload/");
HttpPostedFile File = userPicFileUpload.PostedFile;
string fileExtn = Path.GetExtension(File.FileName).ToLower();
string filename = System.IO.Path.GetFileName(File.FileName);
File.SaveAs(filename);
lblStatus.Visible = true;
lblStatus.Text = "Profile picture changed successfully !!";
}
catch (Exception ex)
{
}
}
上传图片后没有刷新。请帮帮我
答案 0 :(得分:4)
只需用asp按钮替换你的按钮就行了......
答案 1 :(得分:1)
保存图像后,您不会更改图像。
protected void btnChangeUserPic2_Click(object sender, EventArgs e)
{
try
{
string filePath = Server.MapPath("~/Upload/");
HttpPostedFile File = userPicFileUpload.PostedFile;
string fileExtn = Path.GetExtension(File.FileName).ToLower();
string filename = System.IO.Path.GetFileName(File.FileName);
File.SaveAs(filename);
lblStatus.Visible = true;
lblStatus.Text = "Profile picture changed successfully !!";
profilepic.ImageUrl=filePath+filename;
}
catch (Exception ex)
{
}
}
答案 2 :(得分:0)
<button>
是客户端按钮的客户端标记。
为了能够使用按钮回调,你需要一个绑定到btnClick的<asp:Button>
或类似物。 <asp:Button>
是一个服务器端控件,它与代码隐藏绑定,但会生成一个ClientSide html按钮,该按钮将在单击时调用服务器。
否则你需要开始使用ScriptManager。
为避免重复对众所周知的“问题”的回答,我会发送给您:http://www.codeproject.com/Articles/1757/File-Upload-with-ASP-NET
解释了使用ASP.NET WebForms进行文件上载的所有内容