简体   繁体   English

按钮的单击事件未在asp.net中触发

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

I have button in my page as you can see here : 我在页面中有按钮,您可以在此处看到:

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

The click event of this button is : 此按钮的单击事件是:

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");
        }
    }

But when i click on the button it doesn't work .the important things is all my buttons in the page are disabled . 但是当我点击按钮时它不起作用。重要的是我的所有按钮都被禁用了。

If the html code is needed ,i can include it in my question. 如果需要html代码,我可以将其包含在我的问题中。

The webconfig 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>

Best regards 最好的祝福

If your eventClick invoke a postback and Fire the page_Load function without moving to your click event hundler, and you are sure that OnClick attribute has the right event hundler name the you have to check your web.config 如果您的eventClick调用回发并触发page_Load函数而不移动到您的click事件hundler,并且您确定OnClick属性具有正确的事件hundler名称,则必须检查您的web.config

in this section 在这个部分

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

change it to 改为

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

And if the "MaxHttpCollectionKeys" does not exist add it. 如果“MaxHttpCollectionKeys”不存在则添加它。

and change this config under the 并在下更改此配置

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

to

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM