.net ajax投票不刷新

publicpartialclass_Default:System.Web.UI.Page{protectedvoidPage_Load(objectsender,Eve... public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

protected void btnOK_Click(object sender, EventArgs e)
{
string strPhotoName = this.txtPhotoName.Text;
string strName = this.Label1.Text;

SqlConnection sqlCon = DB.CreateSqlCon();
string sqlSel = "select * from photoInfo where photoTitle=@title";
SqlCommand sqlSelCmd=new SqlCommand(sqlSel,sqlCon);
sqlSelCmd.Parameters.Add(new SqlParameter("@title",SqlDbType.VarChar,50));
sqlSelCmd.Parameters["@title"].Value=strPhotoName;
SqlDataReader dr=sqlSelCmd.ExecuteReader();
if(dr.Read())
{
dr.Close();
DB.Alert("对不起,该图片名称已存在");

}
else
{
dr.Close();
if (FileUpload1.PostedFile.ContentLength > 0)
{
string photoName = System.IO.Path.GetExtension(FileUpload1.PostedFile.FileName).ToLower();
string photoType = photoName.Substring(photoName.IndexOf(".") + 1);
string photoNewName = strPhotoName + DateTime.Now.ToString("yyyymmddhhmmss");
string path = Server.MapPath("~/upload/");
string strPath = path + photoNewName;
string strPathNew = "upload/" + photoNewName;
string photoSize = FileUpload1.PostedFile.ContentLength.ToString();

if (photoType == "jpg" || photoType == "gif")
{
if (FileUpload1.PostedFile.ContentLength <= 300000)
{
FileUpload1.PostedFile.SaveAs(strPath);

string sqlInsert = "insert into photoInfo(photoTitle,photoPath,flag,userName,photoCount) values(@title,'" + strPathNew + "','未通过','" + strName + "','0')";
SqlCommand sqlCmd = new SqlCommand(sqlInsert, sqlCon);
sqlCmd.Parameters.Add(new SqlParameter("@title", SqlDbType.VarChar, 50));
sqlCmd.Parameters["@title"].Value = strPhotoName;
sqlCmd.ExecuteNonQuery();
sqlCon.Close();
this.txtPhotoName.Text = "";
DB.Alert("上传成功");

}
else
{
DB.Alert("图片大小不能超过300K");
}
}
else
{
DB.Alert("上传图片格式不正确");
}

}
else
{
DB.Alert("请上传图片");
}
}
}

protected void btnClear_Click(object sender, EventArgs e)
{
this.txtPhotoName.Text = "";

}
}
这是后台代码,有问题吗,点击投票之后没反应
展开
 我来答
turbo280
2009-07-20 · TA获得超过924个赞
知道小有建树答主
回答量:414
采纳率:0%
帮助的人:278万
展开全部
....代码弄错了,是图片上传的
xf14837616
2009-07-20 · TA获得超过558个赞
知道小有建树答主
回答量:799
采纳率:0%
帮助的人:405万
展开全部
这是投票?我怎么看像图片上传啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式