按钮的点击事件是't在asp.net中触发

The click event of button isn't trigged in asp.net

本文关键字:asp net 事件 按钮      更新时间:2023-09-26

我的页面中有一个按钮,您可以在这里看到:

  <div class="buttonPossion">
                    <asp:Button ID="btnFinal" runat="server" Text="دانلود مقاله" CssClass="buttonBlue" OnClick="btnFinal_Click"/>
                </div>

该按钮的点击事件为:

protected void btnFinal_Click(object sender, EventArgs e)
    {
        int count =
            dbcontext.tblJurorArticles.Where(i => i.articleid == articleId && i.jurorUsername == Session["juror"])
                     .Count();
        if (count == 1)
        {
            Response.Redirect("../AdminPortal/DownloadArticleHandler.ashx?File=" +
                              obj.Return_filelocation_article(articleId.ToString()));
        }
        else
        {
            Response.Redirect("asda");
        }
    }

但当我点击按钮时,它不起作用。重要的是我在页面中的所有按钮都被禁用了。

如果需要html代码,我可以把它包括在我的问题中。

webconfig

 <?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <connectionStrings>
    <add name="DB-Conference-CivilConstruction" connectionString="Data Source=176.9.90.204,9992;Initial Catalog=DB-Conference-CivilConstruction;User ID=DB-Conference-CivilConstruction-user; password=123qweQWE@;"
      providerName="System.Data.SqlClient" />
    <!--<add name="DB-Conference-CivilConstruction" connectionString="Data Source=192.168.223.75;Initial Catalog=DB-Conference-CivilConstruction;User ID=DB-Conference-CivilConstruction-user; password=123qweQWE@;"
      providerName="System.Data.SqlClient" />-->
  </connectionStrings>
   <system.webServer>
   <security>
      <requestFiltering>
         <requestLimits maxAllowedContentLength="1073741824" />
      </requestFiltering>
   </security>
 </system.webServer>
  <system.web>
    <compilation debug="true" targetFramework="4.0"/>
   <httpRuntime maxRequestLength="1048576" />
    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
  </system.web>
</configuration>

向致以最良好的问候

如果您的eventClick调用回发并启动page_Load函数而不移动到您的点击事件hundler,并且您确定OnClick属性具有正确的事件hundle名称,则您必须检查web.config

在本节

<appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="xxx" />
  </appSettings>

将其更改为

<appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="5000" />
  </appSettings>

如果"MaxHttpCollectionKeys"不存在,请添加它。

并在下更改此配置

<configuration> 
<system.web>
<httpRuntime maxRequestLength="xxx" />

<configuration> 
    <system.web>
    <httpRuntime maxRequestLength="51200" />