FineUI 官方论坛

标题: btton按钮,部署后不起作用。 [打印本页]

作者: 八水绕    时间: 2012-11-6 06:25
标题: btton按钮,部署后不起作用。
程序跑起来没问题,但部署后不起作用,请老大们看看,着急。

作者: sanshi    时间: 2012-11-6 07:37
看看是不是 AXD 文件加载不了...
作者: 八水绕    时间: 2012-11-11 17:37
登录页面: win7  64位下 发布后 按button按钮不起作用.
<body>
    <form id="form1" runat="server">
    <extageManager ID="ageManager1" runat="server" />
    <ext:Window ID="Window1" runat="server" Title="登录表单" IsModal="false" EnableClose="false"
        WindowPosition="GoldenSection" Width="350px">
        <Items>
            <ext:SimpleForm ID="SimpleForm1" runat="server" ShowBorder="false" BodyPadding="10px"
                LabelWidth="60px" EnableBackgroundColor="true" ShowHeader="false">
                <Items>
                    <ext:TextBox ID="tbxUserName" Label="用户名" Required="true" runat="server">
                    </ext:TextBox>
                    <ext:TextBox ID="tbxPassword" Label="密码" TextMode="assword" Required="true" runat="server">
                    </ext:TextBox>
                    <ext:Button ID="btnLogin" Text="登录"  ValidateForms="SimpleForm1" ValidateTarget="Top"
                        runat="server" OnClick="btnLogin_Click">
                    </ext:Button>
                  
                </Items>
            </ext:SimpleForm>
        </Items>
    </ext:Window>
       <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />  
    </form>
</body>
</html>

protected void btnLogin_Click(object sender, EventArgs e)
    {


        UserInfoBusiness m_userInfo=new UserInfoBusiness();
        UserInfoEntity Result = m_userInfo.GetUserInfo(tbxUserName.Text);

        if (Result == null)
        {
            Alert.ShowInTop("用户名或密码错误!", MessageBoxIcon.Error);
            return;
        }
        else
        {
            if (tbxPassword.Text != Result.Password|| Result.State=="0")
            {

                Alert.ShowInTop("用户名或密码错误!", MessageBoxIcon.Error);
               
                return;
            }
        
        }

        new Cookie().setCookie("UserName", Result.UserName, 2);
        Response.Redirect("Default.aspx",true);
        
    }


作者: 八水绕    时间: 2012-11-11 17:37
用 asp.net控件可以,不知道啥原因,请帮助下。
作者: 绵白糖    时间: 2012-12-3 06:17
我也遇到这个问题了 我在调试阶段也无法使用... 就是button按钮无法对应到相关事件上去
作者: 绵白糖    时间: 2012-12-3 06:24
注意检查下你的 控件命名 我刚才出错终于找到原因就是因为那个 有个控件名叫id....  你那个错误估计是iis没注册xd扩展名




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