Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/32.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# linkbutton未在asp.net中发回_C#_Asp.net_Webforms_Linkbutton - Fatal编程技术网

C# linkbutton未在asp.net中发回

C# linkbutton未在asp.net中发回,c#,asp.net,webforms,linkbutton,C#,Asp.net,Webforms,Linkbutton,我有许多linkbutton放在网络表单上,直到昨天一切正常。但是现在我的ajax扩展器不工作了,linkbutton正在发回。 我的一些代码是 <table width="460px"> <tr> <td colspan="2" style=" color: #C48239; font-style: normal; font-size: 18px; font-family: 'Bookman Old Style

我有许多
linkbutton
放在网络表单上,直到昨天一切正常。但是现在我的ajax扩展器不工作了,
linkbutton
正在发回。 我的一些代码是

 <table  width="460px">
    <tr>
        <td colspan="2" 
            style=" color: #C48239; font-style: normal; font-size: 18px; font-family: 'Bookman Old Style'; text-align:center;height:22px;">
           Manage Your Profile</td>
    </tr>
    <tr>
        <td>
            <asp:LinkButton ID="lnk_per_pro" runat="server" CssClass="linkButton" 
                PostBackUrl="~/User/Edit_profile.aspx">Edit Personal Profile</asp:LinkButton> </td>
        <td>
            <asp:LinkButton ID="lnk_par_pro" runat="server"  CssClass="linkButton">Edit Partner's Profile</asp:LinkButton></td>
    </tr>
    <tr>
        <td>
            <asp:LinkButton ID="lnk_con_det" runat="server" CssClass="linkButton" 
                PostBackUrl="~/User/Edit_profile.aspx">Edit Contect Details</asp:LinkButton></td>
        <td>
            <asp:LinkButton ID="lnk_add_photos" runat="server" CssClass="linkButton">Add Photos</asp:LinkButton></td>
    </tr>
    <tr>
        <td>
            <asp:LinkButton ID="lnk_hob" runat="server" CssClass="linkButton" 
                PostBackUrl="~/User/Edit_profile.aspx">Edit Hobbies and Interests</asp:LinkButton></td>
        <td>
            <asp:LinkButton ID="lnk_del_pro" runat="server" CssClass="linkButton">Remove/Delete Profile</asp:LinkButton></td>
    </tr>
</table></center>
</div>
</div><!-- div 2 end-->
<div id="div3">
<div id="inbox1"><b>About Myself</b>
</div>
<div id="inbox2"><a href="Partner_pre.aspx">Partner Prefrence </a>
</div>
</div>

<div id="div4">
<div id="indiv4"><b>Basics Information</b>
<div id="edit4">
    <asp:LinkButton ID="lnk_edit" runat="server" CssClass="link" 
        PostBackUrl="~/User/Edit_profile.aspx">&nbsp;Edit</asp:LinkButton>&nbsp;<img src="images/edit.png" alt="" />
</div>
</div>
<div id="indiv24">
    <div id="lt"><table class="style1" >
        <tr>
            <td style="color: #666666; width: 180px">
                Age</td>
            <td style="width: 180px">
                <asp:Label ID="lbl_age2" runat="server" Text="Label"></asp:Label>
            </td></tr><tr>
            <td style="color: #666666; width: 180px">
                Mobile Number</td>
            <td>
                <asp:Label ID="lbl_mob2" runat="server" Text="Label"></asp:Label>
            </td>
        </tr>
        <tr>
            <td style="color: #666666; width: 180px">
                Height</td>
            <td style="width: 180px">
                <asp:Label ID="lbl_height2" runat="server" Text="Label"></asp:Label>
            </td></tr><tr>
            <td style="color: #666666; width: 180px">
                Email Id</td>
            <td>
                <asp:Label ID="lbl_eml2" runat="server" Text="Label"></asp:Label>
            </td>
        </tr>
        <tr>
            <td style="color: #666666; width: 180px">
                Marital Status</td>
            <td style="width: 180px">
                <asp:Label ID="lbl_mar_sts2" runat="server" Text="Label"></asp:Label>
            </td></tr>
    </table></div>
a link is shown on hover of linkbutton 
javascript:webforms_DoPostbackWithOption:(NewPostBackoption("","false",true,"false"));

管理您的个人资料
基本信息
编辑
年龄
手机号码
高度
电子邮件Id
婚姻状况
链接显示在linkbutton的悬停位置
javascript:webforms_DoPostbackWithOption:(NewPostBackoption(“,”假“,”真“,”假”);

有时您的系统已更改为旧时间(如一年前),链接按钮也不会重定向

您是否在应用程序内有任何验证控件,请将原因验证=false设置为链接按钮控件来检查一次。

应用程序内可能有验证控件,通过将“原因验证=错误”设置为“链接按钮”控件来检查一次。

检查您的系统日期是否正确,但我看到其格式已更改是否影响解决方案任何可能受这些影响的情况?哪个版本的internet explorer?我已在IE chrome和最新版本的mozila上对其进行了测试