473,763 Members | 2,714 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Link Issues

Why would this link not work on "Firefox 7.12 Version 1.07"? It works fine
in IE?

<a href='aac_produ ct_home.asp?Cat egory=product&S ection='>

<td width="145" <%if lcase(sCategory ) = "product" then Response.Write
"class='topnavc ellactive'" else Response.Write "class='topnavc ell'"%>>

<p align="center"> Product Overview

</td>

</a>

Here are the two CSS classes.

..topnavcell

{

font-size: 9pt;

color: #000000;

font-family: Arial;

text-decoration: none;

background-color: #CCCCCC;

cursor: hand;

}

..topnavcellact ive

{

font-size: 9pt;

color: #FFFFFF;

font-family: Arial;

text-decoration: none;

background-color: #000000;

cursor: hand;

}

I assume this may be a CSS issue but what is the issue and how can I resolve
it.

Thanks in advance.
Mar 1 '06 #1
11 1445
Matt wrote:
Why would this link not work on "Firefox 7.12 Version 1.07"? It works
fine in IE?
I assume this may be a CSS issue but what is the issue and how can I
resolve it.

You're right: it's got nothing to do with ASP. I'm not sure which
client-side group to direct you to because i'm not sure what you mean by
"not work".

If it is a css issue, then you should be posting to a css group like
comp.infosystem s.www.authoring.stylesheets

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.
Mar 1 '06 #2

Matt wrote:
Why would this link not work on "Firefox 7.12 Version 1.07"? It works fine
in IE?

<a href='aac_produ ct_home.asp?Cat egory=product&S ection='>

<td width="145" <%if lcase(sCategory ) = "product" then Response.Write
"class='topnavc ellactive'" else Response.Write "class='topnavc ell'"%>>

<p align="center"> Product Overview

</td>

</a>

Here are the two CSS classes.

.topnavcell

{

font-size: 9pt;

color: #000000;

font-family: Arial;

text-decoration: none;

background-color: #CCCCCC;

cursor: hand;

}

.topnavcellacti ve

{

font-size: 9pt;

color: #FFFFFF;

font-family: Arial;

text-decoration: none;

background-color: #000000;

cursor: hand;

}

I assume this may be a CSS issue but what is the issue and how can I resolve
it.

Thanks in advance.


What do you mean by "doesn't work"?

And If you really think it's a CSS issue, why don't you try a CSS
group, like comp.infosystem s.www.authoring.stylesheets

--
Mike Brind

Mar 1 '06 #3

Mike Brind wrote:
Matt wrote:
Why would this link not work on "Firefox 7.12 Version 1.07"? It works fine
in IE?

<a href='aac_produ ct_home.asp?Cat egory=product&S ection='>

<td width="145" <%if lcase(sCategory ) = "product" then Response.Write
"class='topnavc ellactive'" else Response.Write "class='topnavc ell'"%>>

<p align="center"> Product Overview

</td>

</a>

Here are the two CSS classes.

.topnavcell

{

font-size: 9pt;

color: #000000;

font-family: Arial;

text-decoration: none;

background-color: #CCCCCC;

cursor: hand;

}

.topnavcellacti ve

{

font-size: 9pt;

color: #FFFFFF;

font-family: Arial;

text-decoration: none;

background-color: #000000;

cursor: hand;

}

I assume this may be a CSS issue but what is the issue and how can I resolve
it.

Thanks in advance.


What do you mean by "doesn't work"?

And If you really think it's a CSS issue, why don't you try a CSS
group, like comp.infosystem s.www.authoring.stylesheets

--
Mike Brind


Just guessing, but if you mean that you can't get cursor: hand; to work
in Firefox, you are right - it IS a CSS issue. And the reason is
because 'hand' is not a valid value for the cursor property in CSS2.
In fact, IE is the only browser to support it. You should use
'pointer' as the value instead.

--
Mike Brind

Mar 1 '06 #4
Thanks Mike. The user stated that the link in general did not work and the
hand did not appear. I will change hand to "pointer" but any idea as to why
the actual hyperlink does not work when the user clicks on it? Does it have
to do with the <a> tag being around a table cell?

Forgive me for posting to this group. I assumed other ASP programmers may
have experienced this issue and I would be able to relate to their solution
better. I was not sure if it was CSS related and did not want to limit
myself to CSS.
"Mike Brind" <pa*******@hotm ail.com> wrote in message
news:11******** *************@v 46g2000cwv.goog legroups.com...

Mike Brind wrote:
Matt wrote:
> Why would this link not work on "Firefox 7.12 Version 1.07"? It works
> fine
> in IE?
>
>
>
> <a href='aac_produ ct_home.asp?Cat egory=product&S ection='>
>
> <td width="145" <%if lcase(sCategory ) = "product" then Response.Write
> "class='topnavc ellactive'" else Response.Write "class='topnavc ell'"%>>
>
> <p align="center"> Product Overview
>
> </td>
>
> </a>
>
>
>
>
>
> Here are the two CSS classes.
>
>
>
> .topnavcell
>
> {
>
> font-size: 9pt;
>
> color: #000000;
>
> font-family: Arial;
>
> text-decoration: none;
>
> background-color: #CCCCCC;
>
> cursor: hand;
>
> }
>
>
>
> .topnavcellacti ve
>
> {
>
> font-size: 9pt;
>
> color: #FFFFFF;
>
> font-family: Arial;
>
> text-decoration: none;
>
> background-color: #000000;
>
> cursor: hand;
>
> }
>
>
>
> I assume this may be a CSS issue but what is the issue and how can I
> resolve
> it.
>
>
>
> Thanks in advance.


What do you mean by "doesn't work"?

And If you really think it's a CSS issue, why don't you try a CSS
group, like comp.infosystem s.www.authoring.stylesheets

--
Mike Brind


Just guessing, but if you mean that you can't get cursor: hand; to work
in Firefox, you are right - it IS a CSS issue. And the reason is
because 'hand' is not a valid value for the cursor property in CSS2.
In fact, IE is the only browser to support it. You should use
'pointer' as the value instead.

--
Mike Brind

Mar 2 '06 #5

Matt wrote:
Thanks Mike. The user stated that the link in general did not work and the
hand did not appear. I will change hand to "pointer" but any idea as to why
the actual hyperlink does not work when the user clicks on it? Does it have
to do with the <a> tag being around a table cell?

Forgive me for posting to this group. I assumed other ASP programmers may
have experienced this issue and I would be able to relate to their solution
better. I was not sure if it was CSS related and did not want to limit
myself to CSS.


Yes it does - I didn't spot that before :-)

It should be <td><a href="somelink" >Some link text</a></td>

That's an html question now, so here's another group for that:
comp.infosystem s.www.authoring.html

;-)

--
Mike Brind

Mar 2 '06 #6
With the example you had given to me, the entire cell itself would not be a
hyperlink. Only the "Some Link Text" would be a hyperlink. Is creating an
entire cell as a hyperlink not valid HTML?

Should I use this instead or would I still experience the issue in a non-IE
browser?

<td onClick="locati on.href='msn.co m'">Some Link Text</td>

I am trying not to cross post because every time I do that people yell at
me. What is the best method of posting when it pertains to multiple groups?
"Mike Brind" <pa*******@hotm ail.com> wrote in message
news:11******** *************@i 40g2000cwc.goog legroups.com...

Matt wrote:
Thanks Mike. The user stated that the link in general did not work and
the
hand did not appear. I will change hand to "pointer" but any idea as to
why
the actual hyperlink does not work when the user clicks on it? Does it
have
to do with the <a> tag being around a table cell?

Forgive me for posting to this group. I assumed other ASP programmers may
have experienced this issue and I would be able to relate to their
solution
better. I was not sure if it was CSS related and did not want to limit
myself to CSS.


Yes it does - I didn't spot that before :-)

It should be <td><a href="somelink" >Some link text</a></td>

That's an html question now, so here's another group for that:
comp.infosystem s.www.authoring.html

;-)

--
Mike Brind

Mar 2 '06 #7

Matt wrote:
With the example you had given to me, the entire cell itself would not be a
hyperlink. Only the "Some Link Text" would be a hyperlink. Is creating an
entire cell as a hyperlink not valid HTML?
Not as far as I know.

Should I use this instead or would I still experience the issue in a non-IE
browser?

<td onClick="locati on.href='msn.co m'">Some Link Text</td>
Best try it out. I've never used it. This has definitely become an
html issue.

I am trying not to cross post because every time I do that people yell at
me. What is the best method of posting when it pertains to multiple groups?


http://www.aspfaq.com/show.asp?id=2081 :-)

--
Mike Brind

Mar 2 '06 #8
So Mike,

Just trying to get this newsgroup netiquette thing down. Now that you have
stated this is an HTML issue, should I submit a post to an HTML group or is
that still considered cross-posting?

Thanks.
"Mike Brind" <pa*******@hotm ail.com> wrote in message
news:11******** *************@u 72g2000cwu.goog legroups.com...

Matt wrote:
With the example you had given to me, the entire cell itself would not be
a
hyperlink. Only the "Some Link Text" would be a hyperlink. Is creating an
entire cell as a hyperlink not valid HTML?


Not as far as I know.

Should I use this instead or would I still experience the issue in a
non-IE
browser?

<td onClick="locati on.href='msn.co m'">Some Link Text</td>


Best try it out. I've never used it. This has definitely become an
html issue.

I am trying not to cross post because every time I do that people yell at
me. What is the best method of posting when it pertains to multiple
groups?


http://www.aspfaq.com/show.asp?id=2081 :-)

--
Mike Brind

Mar 2 '06 #9
Multipost: posting individual messages to multiple newsgroups one-at-a-time
(i.e., send a message to group1, then compose the same message and send it
to group2
Crosspost: posting a single message simultaneously to several newsgroups by
putting a list of the newsgroups in the message's To field. When a message
is crossposted, replies to the post are automatically sent to all the
crossposted groups

crossposting good - multiposting bad

We usually frown upon multiposting because it is hard to carry on a
conversation in multiple places. it's like you go into a room shout out "how
do I do this?", run to another room without waiting for a reply, shout the
message into that room , etc. People in the third room will probably not
appreciate wasting their time trying to help with a problem that was already
resolved in the first room.

In this case, you have done well by posting to a single group. Oops, it was
the wrong group. There should be no one who criticizes you for posting to
the correct group, especially if you preface that with post with an
explanation that you found out you had initially posted to the wrong group.

Matt wrote:
So Mike,

Just trying to get this newsgroup netiquette thing down. Now that you
have stated this is an HTML issue, should I submit a post to an HTML
group or is that still considered cross-posting?

Thanks.
"Mike Brind" <pa*******@hotm ail.com> wrote in message
news:11******** *************@u 72g2000cwu.goog legroups.com...

Matt wrote:
With the example you had given to me, the entire cell itself would
not be a
hyperlink. Only the "Some Link Text" would be a hyperlink. Is
creating an entire cell as a hyperlink not valid HTML?


Not as far as I know.

Should I use this instead or would I still experience the issue in a
non-IE
browser?

<td onClick="locati on.href='msn.co m'">Some Link Text</td>


Best try it out. I've never used it. This has definitely become an
html issue.

I am trying not to cross post because every time I do that people
yell at me. What is the best method of posting when it pertains to
multiple groups?


http://www.aspfaq.com/show.asp?id=2081 :-)

--
Mike Brind


--
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.
Mar 2 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
8507
by: Doors of Perception | last post by:
As you probably know, when you click on a link in MSIE and go to a page, then when you click the "back" button, you see a dotted box outlining the link on which I just clicked. As far as I'm aware, no versions of Opera support this desired capability natively, so I've experimented, as best I could, with using a custom CSS file which contains the following: a:hover { outline: 2px dotted black; }
1
1396
by: Larry R Harrison Jr | last post by:
I have some mouse-over menus which work fine (I've posted about them before) and I've got the other issues (filepath issues etc) working. Now I'm trying to finetune matters. Again it's the "HV Menu" from http://www.dynamicdrive.com/dynamicindex1/index.html I'd like the link to open in a new window. It normally assumes this syntax: Menu3_6_3=new Array("Slideshow","www.yahoo.com ","",0); The designer says that one option is if you want...
2
3353
by: David | last post by:
Hi, We have an internal network of 3 users. Myself & one other currently have individual copies of the front-end MS Access forms and via our individual ODBC links we have used the: File > Get External Data > Link Tables > select ODBC Databases facility to link to our back-end MySQL Server. On both our machines the tables appear in the window very quickly and if we hit 'Select All', all the tables start loading really quickly into our...
3
1463
by: Paul Cameron | last post by:
Hello, We've recently migrated a very large (40+ projects, 1+ million LOC) VC6 workspace to VC7.1. In general, the compiler and linker are slower. The worst seems to be the release link; under VC6 it would take 15 minutes to link the main exe, under VC7.1 it typically takes an hour. Anyone have any tips on how to diagnose the bottleneck and find workarounds? This is just one of several severe problems we've encountered in the...
14
2837
by: Steve McLellan | last post by:
Hi, Sorry to repost, but this is becoming aggravating, and causing me a lot of wasted time. I've got a reasonably large mixed C++ project, and after a number of builds (but not a constant number) linking (and sometimes compiling) becomes immensely slow, and task manager shows that link.exe (or cl.exe) is barely using any processor time, but an awful lot of RAM (around 150-200MB). I'm going to keep an eye on page faults since I can't...
3
2172
by: debbie | last post by:
I have an Access 2002 program that I install using Wise. The first thing my program does when a front end is opened is re-link, then it checks the version and if needed upgrades the backend. My problem is that I have a new front end version upgrade that creates several new tables in the backend and then links them. So when the program opens up it checks the version in the backend and if needed creates new tables & new links. Now when...
3
3079
by: Jason | last post by:
Hi, I built a vb.Net application that creates ICS calendar files dynamically and then sends them to the client browser as a downloadable file. Works perfectly except in the following situation. If the URL link to the web page is mailed to someone and they click on the link in Outlook and there are no web browsers already opened on their system, IE Starts, the open/save Dialog displays and then 1-2 seconds later the IE window closes...
4
1248
by: musosdev | last post by:
Hi I need to extend the contents of the src element of the <link relcss tags in the <headsection of my masterpage. From code, how can I access the <link elements within the <head? Cheers
8
2490
by: Bern McCarty | last post by:
We have a large mixed dll that I can never seem to get to link incrementally. Below is the console output. For simplicity I've eliminated some stuff that we normally do when we really link this dll like manifest embedding and strong name delay signing. Can anyone see anything wrong with my link command? Or offer some other explanation why I can never get an incremental link out of it? To test, I'm just touching one of the source files so...
7
1509
by: =?Utf-8?B?c3VwcG9ydGRldg==?= | last post by:
Hi, Is it possible in visual studio 2005 at design time to link a control on Form 1 to another control on Form 2. Regards Charles Mifsud Shireburn Software Ltd.
0
9563
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10145
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9998
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9822
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8822
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5270
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3917
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3523
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.