js文件中有这一段
var _this = obj;
$.getJSON("PrizeHandler.ashx", function (res) {});
aspx中有这段
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="uid" runat="server">
<ContentTemplate>
<asp:Button ID="Button1" runat="server" CssClass="pxbtn" Text="提交" OnClick="Button1_Click" />
<asp:Label ID="end" runat="server"></asp:Label>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Button1" />
</Triggers>
</asp:UpdatePanel>
然后aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{}
我想问的是,我一个button提交到aspx.cs查询(因为不想让网页刷新,所以用了updatepanel),之后点击图片实现抽奖需要用getJSON去调用ashx文件,这三者存在冲突么?技术上允许这样用么?
有什么解决办法?
因为百度不到相关资料,好像也没有人这样用过,跪求各位大神帮忙看下,在线等