Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Craig #1
Hyperlink
In my older version of publisher I could just make a link
to the pdf file on my hard drive, and when I uploaded it
to my ftp site the link would work. However with the 2002
version this doesn't seem to be the case can anyone help?
Craig Guest
-
No hyperlink
The help function directs my to go to "insert" and choose "hyperlink" . These items do not exist on the tool bar, anywhere. Whats going on? Am I... -
asp:hyperlink
Does anyone know when you NEED to use asp:HyperLink versus a regular Href? An example would be greatly appreciated. -
Need Help with Hyperlink in a SWF
Hello, I recently purchased a nice little flash based web site. I am by no means a flash expert, however I know just enough to be dangerous. I am... -
hyperlink bug?!
Hi There, Director seems to have a problem return dynamic hyperlinks such as the following: ... -
Dynamically Hyperlink and Event Handler for the Hyperlink ?
Hi, I´m creating an Hyperlink dynamically for my DataGrid: HyperLink hl = new HyperLink(); hl.Text = "MyLink"; hl.NavigateUrl = "#";... -
-
Toto' #3
Re: hyperlink
"Patricia Peeters" <patricia.peeters3@pandora.be> ha scritto nel messaggio
news:Hybob.115376$fN4.5279848@phobos.telenet-ops.be...?!?> Mijn hyperlinks gaan ni, wie kan me helpen??
>
Toto' Guest
-
Patricia Peeters #4
Re: hyperlink
My hyperlinks don't work, can you help me??
"Toto'" <a-tratti@TOGLIQUESTlibero.it> schreef in bericht
news:cBbob.381989$R32.12640870@news2.tin.it...> "Patricia Peeters" <patricia.peeters3@pandora.be> ha scritto nel messaggio
> news:Hybob.115376$fN4.5279848@phobos.telenet-ops.be...>> > Mijn hyperlinks gaan ni, wie kan me helpen??
> >
> ?!?
>
>
Patricia Peeters Guest
-
Toto' #5
Re: hyperlink
"Patricia Peeters" <patricia.peeters3@pandora.be> ha scritto nel messaggio
news:fDbob.115385$sQ4.5284975@phobos.telenet-ops.be...messaggio> My hyperlinks don't work, can you help me??
>
>
> "Toto'" <a-tratti@TOGLIQUESTlibero.it> schreef in bericht
> news:cBbob.381989$R32.12640870@news2.tin.it...> > "Patricia Peeters" <patricia.peeters3@pandora.be> ha scritto nelCould you explane better your problem? What's the action script code> > news:Hybob.115376$fN4.5279848@phobos.telenet-ops.be...> > > Mijn hyperlinks gaan ni, wie kan me helpen??
> > >
of your links? Paste it
Toto'
Toto' Guest
-
Patricia Peeters #6
Re: hyperlink
on (release) {
getURL("www.favorit.be");
}
"Toto'" <a-tratti@TOGLIQUESTlibero.it> schreef in bericht
news:7Lbob.382066$R32.12642478@news2.tin.it...> "Patricia Peeters" <patricia.peeters3@pandora.be> ha scritto nel messaggio
> news:fDbob.115385$sQ4.5284975@phobos.telenet-ops.be...> messaggio> > My hyperlinks don't work, can you help me??
> >
> >
> > "Toto'" <a-tratti@TOGLIQUESTlibero.it> schreef in bericht
> > news:cBbob.381989$R32.12640870@news2.tin.it...> > > "Patricia Peeters" <patricia.peeters3@pandora.be> ha scritto nel>> > > news:Hybob.115376$fN4.5279848@phobos.telenet-ops.be...
> > > > Mijn hyperlinks gaan ni, wie kan me helpen??
> > > >
> Could you explane better your problem? What's the action script code
> of your links? Paste it
>
> Toto'
>
>
Patricia Peeters Guest
-
Toto' #7
Re: hyperlink
"Patricia Peeters" <patricia.peeters3@pandora.be> ha scritto nel messaggio
news:vSbob.115403$dI4.5265551@phobos.telenet-ops.be...You forget protocol "http". This is the correct code:> on (release) {
> getURL("www.favorit.be");
> }
>
>
on (release) {
getURL("http://www.favorit.be");
}
Bye :)
Toto'
Toto' Guest
-
Karl-Heinz #8
Hyperlink
Hello,
I'm using a link in a datagrid by the operand
"DataNavigateUrlFormatString=". I assume that the link only can activate a
new aspx-page. But the code and the datagrid definitions exist already in
the calling (the 1st) page.
My second datagrid, which already exists, should be activated by a link from
a column of the 1st datagrid. The 2nd datagrid shows several topics, the 1st
shows several articles of each topic. I want to be able to click on a topic
and then all related articles should be displayed.
This time I am able to show all topics and all articles. I used the
hyperlink and a second aspx-file is invoked. It shows all articles of the
selected topic correct, but the code is very similar to that of the 1st
aspx-file which is able to show a full list of all articles. Isn't it
possible to link to this article's display routine and then to identify the
article's data to be displayed?
Any idea? Can you help? Thanks and have several nice days.
Karl-Heinz
--
Author and webmaster of:
_________________________________________
[url]http://www.sharpmz.org[/url]
[url]http://www.angerbichl.de[/url]
[url]http://www.huber-bgl.de[/url]
[url]http://www.hotelbavaria.net[/url]
[url]http://www.Freies-Radio-Bochum.de[/url] (in work)
[url]http://www.web-design-discounter.de[/url] (in work)
[url]http://www.web-design-discounter.com[/url] (in work)
ICQ# 133769328
I am a member of the S.U.C. / UK
( S.U.C.: SHARP User Club [url]http://sharpusersclub.org/[/url] )
Karl-Heinz Guest
-
Todd #9
Re: Hyperlink
Not sure if this will help answer your question or not, but here
something that I did. I let the user select from a drop-down menu to
select an option. Doing so passes their selection as an input
parameter into a SQL stored procedure, which populates a dataset which
I bind to a DataGrid. After the bind, I use the following code to
create a hyperlink on an ID number for each row in the DataGrid:
x=0
While x < DataGrid.Items.Count
dgResults.Items.Item(x).Cells(5).Text = System.String.Format("<a
href=""Detail.aspx?ID=" &
CStr(ds.Tables("Results1").Rows(x).Item("IDNum")) & " "" " & "
target=""_blank"">" &
CStr(ds.Tables("Results1").Rows(x).Item("IDNum")) & "</a>")
x += 1
end While
The above snippet creates the following within the .text property of
the (5) cell of each record within my Datagrid. Assuming that I had 3
rows in my datagrid's results then the 5th cell's text property would
contain:
<a href="Details.aspx?ID=00001" target="_blank">00001</a>
<a href="Details.aspx?ID=00002" target="_blank">00002</a>
<a href="Details.aspx?ID=00003" target="_blank">00003</a>
Using x as a counter and adding one to it each time thru the loop will
cause it to iterate through each record within the entire DataGrid.
Then, when the user clicks on the link to go to the next page, I have
some code intercept the URL variable, and then use that as an input
parameter into another SQL stored procedure. This produces another
datasetset which I bind to a second datagrid to display to the screen.
So, the first page (first datagrid) is used as a broad view of
several options. The second page (second datagrid) uses the URL
variable to show the details for one specific record.
Todd Guest
-
btforres #10
hyperlink
hello, i have created a registration page without a serverbehavior. i have
seven diferent text fields that range from eight characters to multiple lines.
i have inserted an email link at the bottom of the page and it is directed to
my email. the problem is, it wants to use the users computer to send the email.
i want to link the seven text fields to the link and email it directly from the
registration page.
btforres Guest
-
Murray *TMM* #11
Re: hyperlink
There are two basic ways to process form data -
1. Use mailto:name@domain.com as the action of the form
2. Use a server-side scripting method to a) harvest the form's data, b)
process it in some manner, e.g., enter it into a database, c) formulate and
send an email to one or more email recipients, and d) redirect the visitor
to some ending page
Method 1 is quite simple, and is also the least reliable. It depends both
on your visitor having an email client already installed on their computer -
this eliminates public computers - and on that email client responding to
the mailto call. It is not possible to use this method *and* send the
visitor to a
thank you page as well.
Method 2 is the preferred method, since it eliminates the problems of method
1, but it means that you have to grapple with server-scripting somehow (ASP,
CF, PHP, perl, etc.).
Those are the only choices you get...
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"btforres" <webforumsuser@macromedia.com> wrote in message
news:cv3s1k$f2p$1@forums.macromedia.com...> hello, i have created a registration page without a serverbehavior. i have
> seven diferent text fields that range from eight characters to multiple
> lines.
> i have inserted an email link at the bottom of the page and it is directed
> to
> my email. the problem is, it wants to use the users computer to send the
> email.
> i want to link the seven text fields to the link and email it directly
> from the
> registration page.
>
Murray *TMM* Guest
-
Sathyee #12
Hyperlink
Hi there,
I'm populating a content of a web page to a new window (using window.open()),
with dynamic content. The main page has list of materials (along with
hyperlinks) which is to be listed in a print preview page. The list of
materials appearing in the new window should not have any hyperlinks.
So how to deactivate the hyperlink in the popup window ?
Thanks,
Sathyee
Sathyee Guest
-
johnmanoahs #13
Re: Hyperlink
On reading your question, I assume that your intention shud fall into either of
the two assumptions
I have solutions for both....
1. If you want to disable the hyperlinks, click the 'Disable' button ...all
hyperlinks will b disabled.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> Disable Link </TITLE>
<script>
function disableLinks()
{
var linkObj = document.getElementsByTagName("a");
for(i=0;i<linkObj.length;i++)
{
linkObj.href="#";
}
}
</script>
</HEAD>
<BODY>
<A HREF="1.html">click1</A><br>
<A HREF="2.html">click2</A><br>
<A HREF="3.html">click3</A><br>
<A HREF="4.html">click4</A><br>
<input type="button" value=" Disable links " onclick="disableLinks()"/>
</BODY>
</HTML>
2. If your sole reason for disabling the hyperlinks is to take the underline
out of the hyperlinks, then use this function.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Disable Hyperlinks</TITLE>
<style>
.disable a{ color: BLACK; text-decoration: none; }
</style>
<script>
function change()
{
document.body.className="disable";
}
</script>
</HEAD>
<BODY>
<a href="#"> click Me </a><BR><BR>
<input type="button" value="change hyperlink" onClick="change()"/>
</BODY>
</HTML>
PM me back if you have doubts
- John
johnmanoahs Guest
-
DE4U.ORG #14
HYPERLINK
I need to Link home page to a second page. I just want it to direct the
visitor to that specific page. I am using a pre-designed page from
dreamweaver. The hyperlinks are already their, I just need to change the link.
When I right click and select change link and select the file that I want to
change the link to, it does not work.
Any ideas
Clint
DE4U.ORG Guest
-
Murray *TMM* #15
Re: HYPERLINK
When you right click and select change link? Where do you see that?
Just click in the link, and use the Link field in the Property inspector to
browse to and select the desired target file.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"DE4U.ORG" <webforumsuser@macromedia.com> wrote in message
news:d6ah53$9je$1@forums.macromedia.com...>I need to Link home page to a second page. I just want it to direct the
> visitor to that specific page. I am using a pre-designed page from
> dreamweaver. The hyperlinks are already their, I just need to change the
> link.
> When I right click and select change link and select the file that I want
> to
> change the link to, it does not work.
>
> Any ideas
>
> Clint
>
Murray *TMM* Guest
-
DE4U.ORG #16
Re: HYPERLINK
When I am in the edit mode, I can't click on it, I can only highlight it and right click on it. That is when it tells me to changethe link. Where is the proprty inspector?
DE4U.ORG Guest
-
Murray *TMM* #17
Re: HYPERLINK
Huh? Are you using DW?
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"DE4U.ORG" <webforumsuser@macromedia.com> wrote in message
news:d6al2a$fl2$1@forums.macromedia.com...> When I am in the edit mode, I can't click on it, I can only highlight it
> and right click on it. That is when it tells me to changethe link. Where
> is the proprty inspector?
Murray *TMM* Guest
-
DE4U.ORG #18
Re: HYPERLINK
yes, I am using a pre-set page for my homepage from the DW download. It is a CSS Page Design with the Halo Left Nav.
DE4U.ORG Guest
-
-
Murray *TMM* #20
Re: HYPERLINK
I do not recommend those templates for anyone not well comfortable in
javascript and CSS - is that you?
Which link are you trying to change?
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"DE4U.ORG" <webforumsuser@macromedia.com> wrote in message
news:d6anfj$j43$1@forums.macromedia.com...> yes, I am using a pre-set page for my homepage from the DW download. It
> is a CSS Page Design with the Halo Left Nav.
Murray *TMM* Guest



Reply With Quote

