Medo
Medo

Reputation: 325

A Quick Preview feature when mouse hover over the Image

I'm Begginer in ASP.net and new here So I hope I'm following the post guideline here

Let's Assume that I search a product catalog and the result it displayed a multiple products with a Icon , I want when I hover on it that it execute a code that bring multiple texts from database and show it as pop up or small yellow box like tooltip.

for optimization purpose I want that the code is executed when it hover over the link so it can only get info when I hover over the Icon

I get it that it require JQuery(that I know next to nothing off) and bind it on hover event which will fire ajax query and return the data but beside that I'm Clueless as I don't know how to do the actual process

How Should you do it ? Can please tell me the resource (Book/Tutorial) that made you know how to do similar thing .

Upvotes: 2

Views: 749

Answers (2)

Learning
Learning

Reputation: 20011

You should look for Ajax or jQuery Related tutorial For you case you can use this tutorial also

AjaxControlToolkit

Ajax ModalPopUpExtender Example to edit the gridview row values in asp.net

AJAX ModalPopupExtender

Working with ModalPopupExtender in ASP.NET and Ajax - Lesson 09 | .net courses

few examples for you..

Upvotes: 1

pckill
pckill

Reputation: 3759

Here is a small tutorial on how to use ajax with asp.net webservice.

jQuery docs

Upvotes: 1

Related Questions