Connecting Tech Pros Worldwide Forums | Help | Site Map

Double click event

Jack
Guest
 
Posts: n/a
#1: Nov 28 '05
I have a active server page where records are displayed from a query. The
display right now is read only. However, with text box this display can also
be edited. The first column shows category while the second category shows
category total sales. I would like to double click on category field to get
to another asp page that would show the details of sales for that category
value double clicked.

My question is: If there is any double click event that would allow me to
pass values to open another asp page. Any help is appreciated. Regards.

Bob Barrows [MVP]
Guest
 
Posts: n/a
#2: Nov 28 '05

re: Double click event


Jack wrote:[color=blue]
> I have a active server page where records are displayed from a query.
> The display right now is read only. However, with text box this
> display can also be edited. The first column shows category while the
> second category shows category total sales. I would like to double
> click on category field to get to another asp page that would show
> the details of sales for that category value double clicked.
>
> My question is: If there is any double click event that would allow
> me to pass values to open another asp page. Any help is appreciated.
> Regards.[/color]
This is not an ASP issue. ASP is only in effect at the web server and knows
nothing about events that occur in the client browser. You need to follow up
in a client-side scripting newsgroup such as
microsoft.public.scripting.jscript.

'There is no double-click event. I would suggest putting a hyperlink in each
row that uses a querystring to pass the data to the asp page.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Jack
Guest
 
Posts: n/a
#3: Nov 28 '05

re: Double click event


Thanks for the suggestion. It would be of help. Best regards.

"Bob Barrows [MVP]" wrote:
[color=blue]
> Jack wrote:[color=green]
> > I have a active server page where records are displayed from a query.
> > The display right now is read only. However, with text box this
> > display can also be edited. The first column shows category while the
> > second category shows category total sales. I would like to double
> > click on category field to get to another asp page that would show
> > the details of sales for that category value double clicked.
> >
> > My question is: If there is any double click event that would allow
> > me to pass values to open another asp page. Any help is appreciated.
> > Regards.[/color]
> This is not an ASP issue. ASP is only in effect at the web server and knows
> nothing about events that occur in the client browser. You need to follow up
> in a client-side scripting newsgroup such as
> microsoft.public.scripting.jscript.
>
> 'There is no double-click event. I would suggest putting a hyperlink in each
> row that uses a querystring to pass the data to the asp page.
>
> Bob Barrows
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.
>
>
>[/color]
Closed Thread