0

I have a website where the user can select different cards. I need a way where when a new card is selected then the page does not refresh. When I click the back button now it just goes back to previous selections. I need it to go back to the previous page. Here is the code for the image change

   <div class="imgCard" style="padding-right: 50px">
       <asp:ScriptManager ID="ScriptManager" runat="server" />
       <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="conditional">
            <ContentTemplate>
                  <fieldset style="border-width: 150px; border-style: none">
                        <asp:Image ID="imgCardChoice1" runat="server" />
                        <br />
                        <br />
                        <a id="openChange1" href="#" style="color: Red">Change Card</a>
                   </fieldset>
             </ContentTemplate>
        </asp:UpdatePanel>
    </div>

When the user clicks on "Change Card" then a jquery modal box opens and allows them to change the card. Thank you for any help/advice. If needed the code behind to select a new card is in C#.

4

2 回答 2

0

在不了解更多信息的情况下,听起来您需要使用 AJAX 来执行此操作。如果您已经在使用 jQuery,请查看 jQuery.load()。您可以向站点上的 url 发出 AJAX 请求,该请求将仅返回图像信息并将其加载到您指定的元素中。

这是文档的链接:http: //api.jquery.com/load/

于 2013-04-12T16:27:27.077 回答
0

尝试使用一些javascript函数。创建一个要放置图像的 div。然后给他一个 ID,在 javascript 函数上调用 div id 并将 src 更改为您要放置的图像。在您的链接上或无论您必须更改图像,调用 onclick 函数并使用 javascript 函数。在我的网站上,我有 2 张图片,onmouseover 将其他 div 中的图片完全不同。在以下网址查看:http ://roundhillevents.com 并将光标传递到 facebook 和 youtube 徽标上。如果什么都没有出现,让光标停留在那片刻。PS:只适用于forefox,不知道为什么。

于 2013-04-12T16:53:17.507 回答