FineUI 官方论坛

标题: 上传文件时出现js错误 [打印本页]

作者: 桑落    时间: 2012-8-15 18:23
标题: 上传文件时出现js错误
行: 1347
错误: 语法错误

[attach]948[/attach]


作者: sanshi    时间: 2012-8-16 01:19
写个例子,什么浏览器,哪个版本
作者: 桑落    时间: 2012-8-16 03:36
[attach]951[/attach]
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server" >
    <div>
        <extageManager ID="ageManager1" runat="server" AutoSizePanelID="SimpleForm1" />
        <ext:SimpleForm ID="SimpleForm1" runat="server" BodyPadding="5px" EnableBackgroundColor="true"
            Title="SimpleForm" Height="200px">
            <Items>

       <ext:FileUpload ID="FileUpload1" runat="server" Label="Label">
        </ext:FileUpload>
        <ext:Button ID="Button1" runat="server" Text="Button">
        </ext:Button>
            </Items>
         </ext:SimpleForm>

    </div>
    </form>

</body>
</html>





using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
using SubSonic;
using Newtonsoft.Json.Linq;
using ExtAspNet;

namespace GDMS
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {


        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            //tring filename = fu_load.FileName;
            if (FileUpload1.HasFile)
            {
                FileUpload1.SaveAs(Server.MapPath("~/file/upload/") + FileUpload1.FileName);
                Alert.Show("DONE!");
            }
        }

    }
}



3.182版本,vs2008,IE8





欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4