| Desktop Icon from Web Page |
|
 |
Index ‹ dreamweaver
|
- Previous
- 1
- Input record and view detailsI'm using a form to register users and immediately after the registration I
want to go to a detail page that shows the users details. How do I create a
query to do this in php?
Kind regards,
Robin Meeuwsen
- 2
- Updating date in MySQLI am using MYSQL and PHP with Dreamweaver MX 2004.
I have an application where people can buy a listing for a given number of
days.
When they purchase the listing, an expiration date is created using
<?php echo date ("Y-m-d", strtotime("+30 days $date"))?>
The user has the option to renew any time prior to the expiration date. At
that time I need to pull the expiration date from the database (no problem),
add 30 days to the date and update the new expiration date in the database.
I've been trying to figure this out for several hours, but it's a little over
my head.
If anyone could point me in the right direction, I'd appreciate it.
- 2
- form mail questionI know how to set up a form so that sends the entered information to the form
owner but ONLY if the form owner has an email account on the same server as the
form.
So, is it possible to use either asp of php to send form mail to email
addresses other than the email accounts that reside on the server hosting the
form?
If so, can anyone hook me up with a resource/tutorial/code for that? (either
asp or php)
Thanks!
- 8
- problem updating SQL bit field? No error, but isn't updating?Hi,
I used the DW Update wizard to create an Update form which updates one
field, a bit field in an SQL database table.
Problem is, it isn't changing the field value! The bit field is initially
"True" and I want to update it to be "False".
Here's the code:
<%
Dim MM_editAction
MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" &
Server.HTMLEncode(Request.QueryString)
End If
' boolean to abort record edit
Dim MM_abortEdit
MM_abortEdit = false
%>
<%
' IIf implementation
Function MM_IIf(condition, ifTrue, ifFalse)
If condition = "" Then
MM_IIf = ifFalse
Else
MM_IIf = ifTrue
End If
End Function
%>
<%
If (CStr(Request("MM_update")) = "form1") Then
If (Not MM_abortEdit) Then
' execute the update
Dim MM_editCmd
Set MM_editCmd = Server.CreateObject ("ADODB.Command")
MM_editCmd.ActiveConnection = MM_connNAME_STRING
MM_editCmd.CommandText = "UPDATE dbo.tblOrders SET liveorder = ? WHERE
orderID = ?"
MM_editCmd.Prepared = true
MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 5,
1, -1, MM_IIF(Request.Form("liveorder"), -1, 0)) ' adDouble
MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 5,
1, -1, MM_IIF(Request.Form("MM_recordId"), Request.Form("MM_recordId"),
null)) ' adDouble
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
' append the query string to the redirect URL
Dim MM_editRedirectUrl
MM_editRedirectUrl = "confirmdelete.asp"
If (Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0) Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
Response.Redirect(MM_editRedirectUrl)
End If
End If
%>
And this is the form that I'm using:
<form method="POST" action="<%=MM_editAction%>" name="form1">
<input type="hidden" name="liveorder" value=0 />
<input type="submit" value="Update record" />
<input type="hidden" name="MM_update" value="form1">
<input type="hidden" name="MM_recordId" value="<%=
rsOrders.Fields.Item("orderID").Value %>">
</form>
The only thing I've changed is to make the "liveorder" form field hidden.
But even if I don't do that, it still doesn't work.
Hope someone can spot something I've obviously missed.
Regards
Nath.
- 8
- insert questionHi,
I have a a form in which there are 7 fields, and i have defined 2 record
sets.
I want to insert records from first 3 fields to one table and rest 4 fields
to another table with one submit , how is that possible.
pls guide me.
thanks in advance
raj
- 11
- ASP.NET Datalist ProblemI am trying to use the code below and get the following error -
Server Error in '/UK_2005' Application.
--------------------------------------------------------------------------------
No value given for one or more required parameters.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: No value given for one
or more required parameters.
Code used -
'Build serarch criteria
Dim varStandSize, varStandType, sqlString As String
varStandSize = Request.QueryString("size")
varStandType = Request.QueryString("type")
' Set initial SQL statement
sqlstring = "SELECT * FROM portfolio"
If varStandSize > 1 Then
sqlstring = sqlstring & " WHERE size_cat = " & varStandSize
If varStandType <> "" Then
sqlstring = sqlstring & " AND type = " & varStandType
End If
Else
sqlstring = sqlstring
If varStandType <> "" Then
sqlstring = "SELECT * FROM portfolio WHERE type = " & varStandType
End If
End If
' Get portfolio data
'binding a DataReader to the Repeater Control
Dim conDB as oledbConnection
Dim cmdSelect As oledbCommand
Dim dtrPort As oledbDataReader
'connect to database - local sting
conDB = New oledbConnection("PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA
Source=C:\06.mdb;User ID=;Password=;")
cmdselect = New oledbCommand(sqlstring, conDB)
conDB.Open()
dtrPort = cmdSelect.ExecuteReader()
dlstPortfolio.DataSource = dtrPort
dlstPortfolio.DataBind()
dtrport.Close
conDB.Close
- 11
- Afraid to upgrade to 8.02Hi,
I have many programs in which I have had dreamweaver create a recordset as
below. You'll notice that I comment out the line that begins RsTrans.Souurce
and use it for a model for my own sql statement to use as a replacement.
Does anyone know what will happen if I install 8.02 and try to work on such a
file?
<%
Dim RsTrans
Dim RsTrans_numRows
Set RsTrans = Server.CreateObject("ADODB.Recordset")
RsTrans.ActiveConnection = MM_locbookdata_STRING
'RsTrans.Source = "SELECT * FROM dbo.Transactions WHERE Adsize <> 'Credit' AND
Book = '" + Replace(RsTrans__MMColParam, "'", "''") + "' ORDER BY Price DESC,
SaleType ASC" THIS LINE COMMENTED OUT AND REPLACE WITH LINE BELOW
RsTrans.Source = "SELECT * FROM dbo.Transactions WHERE Adsize <> 'Credit' AND
" & Filter1 & Filter2 & Filter3 & " ORDER BY" & Sor1 & Sor2 & Sor3
RsTrans.CursorType = 0
RsTrans.CursorLocation = 2
RsTrans.LockType = 1
RsTrans.Open()
RsTrans_numRows = 0
%>
Here's an example of "Filterx" that comes earlier in the program
If (Request.Form("Book") <> "") Then
Filter1= " Book = " & chr(39) & Request.Form("Book") & chr(39)
End If
I'm afraid I'll get all confused if 8.02 starts rewriting the recordset, but I
know at some point I'll need to upgrade to 9.0
Thanks for any suggestions as to what will happen.
Shelly
- 12
- Send an entire page in emailHi PHP coders,
I have this below but do not know what to place in this section to get an
entire dynamic page to be sent to any email similar to send to a friend:
$mail->Body= '';
=================================================
<?php
require('class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = 'localhost';
$mail->From = 'email***@***.com';
$mail->FromName = 'Name';
$mail->AddBCC (email***@***.com, Name);
$mail->AddReplyTo('email***@***.com', 'Name');// optional name
$mail->WordWrap = 50; // set word wrap to 50 characters
//$mail->AddAttachment('Student 2 Student_LOGO.jpg'); // optional name
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = 'Some subject';
$mail->Body = '';
$mail->AltBody = '';
if(!$mail->Send())
{
echo 'Message could not be sent. <p>';
echo 'Mailer Error: ' . $mail->ErrorInfo;
exit;
}
echo 'Message has been sent';
?>
============================================
Any help would be great!
Cheers
West
- 13
- Dreamweaver's behavior does not work on flash player 8Hi, I'd use to control my .swfs with the dreamweaver behavior (control
shockwave or flash),
but since i did download the flashplayer8 the .swf do not acept the commands
"gotoframe"
or "rewind", just "play" and "stop"...somebody can tell me where i can find
the correct
javascript for this.
Thanks.
- 13
- spry menu "trumps" greybox?I am using "greybox" to replace iframe and as a way to allow our users to
easily navigate through the tools on our site without leaving it.
There are 3 spry vertical menus. The third one on the end shows through the
greybox and covers the other content. I tried playing with the positioning and
that didn't help.
The greybox (hoverbox) works on ajs and js -
http://www.orangoo.com/labs/GreyBox/ <- oooo doesn't like my linux machine.
Anyway has anyone else encountered such an issue?
- 13
- Saving Results of Searches (Find and Replace Feature in Dreamweaver MX)Saving Results of Searches Could you please add a feature to save search
results in a text or html file format? The Dreamweaver search feature is
fantastic, and I use it many times daily. Often, I must keep lists of these
search results, but I do not know of any way to save the results in text or
html format. (Please note that I am not referring to 'save search pattern'
feature.) The only way to do this presently, that I know, is to do a screen
print and paste it into a image editing application. But, there is no real
functionality because it is an image and not a text or html file. Any ideas
would be appreciated. Thanks.
- 14
- How to add popup menu in a floaterI made a floater and want popup a menu when right click the floater. But
I do not find any API to popup menu. Anyone knows some ways to make it
work?
- 14
- Display of PHP files in DreamweaverAfter updating to Dreamweaver 8.0.2, I'm finding that I can't view php files in
either the Split or Design modes. It will only appear in the code mode and
won't let me select a browser to display either.
Any suggestions?
- 14
- asp programmers being too picky?I have a company working on a website and I've provided a db to them with
product info and weights etc.
They are telling me that the weight field is not usable because it contains
text in it.
ie
3.2 pounds
7.4 ounces
not available
They want me to take all the fields and strip the text and convert the
ounces to pounds, but I have no clue how to do that. I would have assumed
that the way it is would be simple.
What do you think?
- 16
- Does Dreamweaver CS3 has any improement in server-side application development?Hi:
I learnt about DW from DW 3.0 and used it from DW4 in all my applications.
From Ultradev it had great server-side application development tools. I went to
the New Features part but found no new server-side application features for DW
CS3 which is officially the first adobe's DW.
I wonder I am wrong or there is no new feature in this field in the CS3
version.
Thanks
Benign
|
| Author |
Message |
skydevil154

|
Posted: 2007-3-3 6:45:39 |
Top |
dreamweaver, Desktop Icon from Web Page
:confused;
Hello-
I have a customer who wants me to set a link on their website which will add a
desktop icon to the visitor's machine. In other words, Their webpage will have
some text that says something to the effect of "To add a desktop icon which
links to our site, Click Here" This will then add a desktop icon on the user's
machine which when clicked, will open a browser and load their site. I haven't
a clue how to do this and have not found anything on it from searching the Web,
other than finding other people who want to do the same. Can anyone help??
Thanks in Advance!
Jeff
|
| |
|
| |
 |
Mick White

|
Posted: 2007-3-3 9:32:00 |
Top |
dreamweaver >> Desktop Icon from Web Page
skydevil154 wrote:
> :confused;
> Hello-
>
> I have a customer who wants me to set a link on their website which will add a
> desktop icon to the visitor's machine. In other words, Their webpage will have
> some text that says something to the effect of "To add a desktop icon which
> links to our site, Click Here" This will then add a desktop icon on the user's
> machine which when clicked, will open a browser and load their site. I haven't
> a clue how to do this and have not found anything on it from searching the Web,
> other than finding other people who want to do the same. Can anyone help??
>
> Thanks in Advance!
>
> Jeff
>
Can't be done, unless the user grants access to his system files to
the browser.
Mick
|
| |
|
| |
 |
| |
 |
Index ‹ dreamweaver |
- Next
- 1
- Update record and refresh page on Drop-Down selection changeI have a form with 3 drop-downs (a.k.a. List/Menu, or combo-box). Each is
populated from a separate record sets, and a 4th record set indicates the
record to be updated and the selected values in the 3 drop-downs. The Selected
value of the 1st drop-down is a parameter to the record set that populates the
2nd drop-down. Thus, changing the selection of the 1st drop down needs to
update the options available in the 2nd drop-down.
Is their a way to update the record and refresh the page if the 1st drop-down
selection changes? Keep in mind thier is also an event that triggers when the
form is submitted.
- 2
- Help me! CounterI use Dreamweaver for created asp page.i'm test alredy.It no error.But can't
update recordset
Please he me.
or you can download code here >>> http://www.genzapeach.com/shopping.rar
<%@LANGUAGE="VBSCRIPT" CODEPAGE="874"%>
<!--#include file="Connections/conn_shopping.asp" -->
<%
Dim rsCounter
Dim rsCounter_numRows
Set rsCounter = Server.CreateObject("ADODB.Recordset")
rsCounter.ActiveConnection = MM_conn_shopping_STRING
rsCounter.Source = "SELECT * FROM countonline"
rsCounter.CursorType = 0
rsCounter.CursorLocation = 2
rsCounter.LockType = 1
rsCounter.Open()
rsCounter_numRows = 0
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<p>
<%
counter = rsCounter("count_num")
if Session("visitor") = " " Then
counter = counter + 1
rsCounter("count_num") = counter
rsCounter.Update
Session("Visitor") = counter
Session.Timeout = 1
End if
%>
</p>
<%
Response.Write counter
%>
</body>
</html>
<%
rsCounter.Close()
Set rsCounter = Nothing
%>
- 3
- Dynamic Image ONLY appearing in SafariI am trying to create a page that uses a URL variable to get a value from a
database and use it to display an image on a page. When I preview the page in
Safari, the image appears. When I preview the page in Firefox or IE, the [i]alt
text[/i] appears instead of the image. The HTML code on the page seems pretty
clear, but as I said, this is my first time trying it.
I am using DW8 on a Mac powerbook.
I have included the page source code here. The photo 'tiger.tif' is supposed
to be displayed.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Gander Publishing vDictionary</title>
<style type="text/css">
<!--
body {
background-image: url(otherPics/wood004.jpg);
background-repeat: repeat;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
text-decoration: underline;
}
-->
</style>
<script type="text/JavaScript">
<!--
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//-->
</script>
</head>
<body>
<div align="center">
<p>tiger</p>
<p><img src="dbPics/tiger.tif" alt="picture" /></p>
<p align="right">
<label for="Submit"></label>
<input name="Back" type="submit" id="Back" accesskey="B" tabindex="1"
onclick="MM_goToURL('parent','alphabet-layer.php');return
document.MM_returnValue" value="Back" />
</p>
</div>
</body>
</html>
- 4
- E-mail address from ACCESS databaseHello!
I have created an enrollment form using DW + an Access db.
On this form the user registers his e-mail address and I would like to know
how I can generate a newsletter that will get this address from the Access
database and e-mail to all users registered there.
It is like a monthly newsletter.
One additional question, if I may.
The users have filled out a "yes" or "no" question for receiving the
Newsletter, so all of them have a "Yes" or "No" field under the newsletter
heading on the database.
Can anyone point me in the right direction?
thanks guys!
- 5
- School ProjectI need help:
I started a school project recently and I have installed IIS on my computer
and created a local server, everything I can think of. I guess I'm just too
much of a newbie. I have been trying to put any type of video on my page. I
have the video downloaded to my computer and I have been reading forums to try
to understand what I did wrong. I just can't seem to figure out how to do it. I
have the file in many different types. (.swf, .mov, .js, .dir., .wma). I would
really appreciate some help because I have been trying for a few days now.
Here is an example of one thing I tried...I don't know what I did wrong:
<object
classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
codetype="video/quicktime" data="ThemetrozTeaserTrailer.mov"
type="video/quicktime" width="317" height="233">
<param name="src" value="ThemetrozTeaserTrailer.mov" />
<param name="controller" value="true" />
<param name="autoplay" value="true" />
<embed src="ThemetrozTeaserTrailer" width="317" height="233"
autoplay="true" controller="true"
pluginspage="http://www.apple.com/quicktime/download/"> </embed>
</object>
and here's another:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=7,0,19,0" width="361" height="281" align="texttop" title="FinalBattle">
<param name="movie" value="FinalBattle.swf" />
<param name="quality" value="high" />
<embed src="FinalBattle.swf" width="361" height="281" align="texttop"
quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash"></embed>
</object>
- 6
- What extension was used for this?Ok, feel like a dummyhead here.
Could anyone look at http://www.afbt.org/frame-top.htm and tell me what
extension was used to create the 4 Drop Downs there?
If you have another suggestion for an extension that will accomplish the same
thing, I'd love to hear about it.
Thanks,
elz
- 7
- tracing imageHi, using DW4. I can see the tracing image in Dreamweaver but when I try to
view it through my browser or at my webspace I cannot see the image!
Why?
All my links to the file are ok, I think.
any ideas
Mick
http://homepages.tesco.net/stillight/quad/
- 8
- sorting dynamic tableI try to sort my table dynimically by using Login. so In Login heading, i make
a link to itself (record.php?sortype=login). How do i use dreamweaver MX 2004 (
in recordset) to accept the parameter (sortype) and use it in my query
recordset. How do i display the sorted result (replacing record page,
record.php ) if user clicks on Login heading...do i use IF ...else?..or any
idea...thanks for big brother and big sister..to help little brother
- 9
- Error-DWMX7-The required component could not be found at the specified location!Strange Error: the Message
The required component could not be found at the specified location!
continues to POP up as a WARNING, while editing a CFM file that include
<CFINVOKE code.
The "component=" tag is a variable, however, the std. syntax
cf.component.cfcodefile does not seem to make a diff?
The msg will POP 2-4 time in a row and can happen just about any time, WITHOUT
warning..
The code works fine ... THIS is an EDIT irratation.....? DW MX seems to be
check the location(on its own), but I could not see what default should be set
in the SITE file??? THOUGHTS?
- 10
- Redirect to a non-existent folder called "Array"This is a multi-part message in MIME format.
I've seen all sorts of errors during my web development days, but this is a first. I hope someone can offer me a clue as to what's going on.
I am using a standard search-results-detail process, ASP VBScript, built in DWCS3 Behaviours. Viewing a record detail on the web, I can link to either and update page, or delete page - the link passes the record ID in the querystring. Upon completion of either task (update or delete), it redirects back to the original results page with updated info.
This usually works - however, after a handful of these tasks, instead of redirecting back to the correct page, which is something like:
mydomain.com/folder/resultspage.asp
....it comes up with a page not found error, and this URL is showing:
mydomain.com/folder/Array/
Of course the page isn't found, there isn't a folder called "Array". What is generating this phantom folder and redirect? I have contacted the web host (Network Solutions) to see if there is something in their IIS setup that may be causing this. I haven't heard back from them, but I am not expecting much in terms of support on this one, they will problably just blame my code.
Has anyone ever seen anything like this? Please help!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16546" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=Arial size=2>I've seen all sorts of errors during my web
development days, but this is a first. I hope someone can offer me a clue
as to what's going on. </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>I am using a standard search-results-detail
process, ASP VBScript, built in DWCS3 Behaviours. Viewing a record detail
on the web, I can link to either and update page, or delete page - the link
passes the record ID in the querystring. Upon completion of either task
(update or delete), it redirects back to the original results page with updated
info. </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>This usually works - however, after a handful of
these tasks, instead of redirecting back to the correct page, which is something
like:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial
size=2><STRONG>mydomain.com/folder/resultspage.asp</STRONG></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>...it comes up with a page not found error, and
this URL is showing:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial
size=2><STRONG>mydomain.com/folder/Array/</STRONG></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Of course the page isn't found, there isn't a
folder called "Array". What is generating this phantom folder and
redirect? I have contacted the web host (Network Solutions) to see if
there is something in their IIS setup that may be causing this. I haven't
heard back from them, but I am not expecting much in terms of support on this
one, they will problably just blame my code. </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Has anyone ever seen anything like this?
Please help!</FONT></DIV></BODY></HTML>
- 11
- DON'T PROMPT USER FOR PRINTFirst, thanks for all the help can send:
Actually I'm working with a "dream" application (almost for me) All I need to
do now is:
Print a ticket for our members, of course I can print my information from the
printer panel on Windows, but I need send it... with out promp the user for it.
Any one knows if it is possible?
I have an intranet, and I'm ussing a Touchscreen on the principal acces of the
building, our members have an magnetic card to acced, the idea is print a
free-cover ticket for some of them.
Maybe a Button on the screen to send the ticket directly to the printer or
.....
Sandra
- 12
- How can i get login details to a table?i am using my sql data base.people who are visiing my web site can log in to
the sites restricted areas using their Usernames and Passwords. (the login is
based on the "Register" table in the data base)
When somebody enteres the site using their Username and Password, and inputs
new data to anothertable (classified table), How can the classified table get
the login Username to one of its columns. (automatically Username of the user
is added to the table)
how can i do that. A coding for that would e perfect. please help me. i would
be really greatful to you.
thanks
sisira
- 13
- Why are Web pages getting Smaller these days?Logic wrote:
> I spend my weekends teaching PC skills to seasoned folks and this is one
conplaint I hear over and over again.>
Surely one of the most useful and little known features of modern
browsers is the ability to increase text size with a couple of
keypresses? As a teacher of PC skills, you're in the perfect position
to show seniors how to improve their browsing experience :)
Of course, that's only true if the designer has taken that possibility
into account ....
Cherry
- 14
- Logion IssueHi, I have developed a login page using a local system dsn, with asp connecting
to MS Access database, however i want to now change this login to MSSQL. I have
successfully imported my MS Access database into MSSQL, however I now need to
change the connection to the database, HOWEVER, my ISP will only let me access
their d'base space from within the website itself, as a security measure, this
mean's i cannot connect to MSSQL direct from DW....
can anyone help??
- 15
- Drop Down Menu ExtensionI would like to use a horizontal drop down menu builder extension with
Dreamweaver MX. Does anyone have a preffered extension or other method to
create a drop down menu? Before I jump in any further I thought I'd check with
some experienced users as to what the best practice might be for this.
Thanks in advance!
DW MX 2004
Mac OSX Panther
|
|
|