 |
 |
Index ‹ dreamweaver
|
- Previous
- 2
- DSN has to be recreated each time I access filesI have a weird quirk in DW 8. I set up a DSN, create/update files, and
successfully test the asp pages. Everything works perfectly. Yet, when I come
back to the files in a week or so, the DSN fails and the Recordsets have
errors. Nothing has changed and the files work on the site yet in DW I am
having DSN issues. Is this a quirk or something I can fix?
- 3
- Tag inspector for locked contentIs it possible for the tag inspector to display attributes of locked content?
I've written a property inspector for the locked content, as mentioned on page
331 of the Extending Dreamweaver manual, but I can't seem to find a way to do
the same sort of thing for the tag inspector.
Thanks,
Leif
- 3
- Dreamweaver and convention for webpage making.Is there a simple convention that students in school could use so that
they will not have to unlearn poor technique in the future when they get
into the business world?
Books are great, but I cannot find something that seems to comply.
Jonah
- 5
- DW Web Gallery - Can I rewrite code?Hi: I like the DW web Photo Gallery feature, with some changes. What I've done
in the past is generated the html file and then gone back in to each page
invidiually to make the changes in layout that I wanted. Is there a way I can
make a change right to the code so that I don't have to make so many changes to
each indivi. page?
I'm not a programmer, but if someone can steer me in the right direction I
might be able to do it.
if you have questions about exactly what I'm trying to do, feel free to email
me. thanks!
Carrie:sun;
- 5
- It should be so simpleI am new to Dreamweaver and I am trying to create a user account which is
completed over 2+pages. The first page uses the insert record behaviour with a
POST which creates the record. Included in the inserted fields is an Alias
field which is unique (and has been tested with Check New Username). The record
is definitely saved.
The detail page uses a recordset filter with D_Alias=Form Variable D_Alias and
under test conditions find the record. When run in the browser however I get
the 800a0bcd error which implies the recordset is empty.
If I modify the code :
Dim rsDiver__MMColParam
rsDiver__MMColParam = "1" - change this to a known value e.g. "fred"
If (Request.Form("D_Alias") <> "") Then
rsDiver__MMColParam = Request.Form("D_Alias")
End If
Then the recordset returns a value and the form works. This implies that the
RequestForm is returning either null or a zero length string.
What I can't work out is whether the POST is not putting a value to the server
or whether the Form Variable is not working or whether it is something else.
Alternatively are there any debugging tools which will enable me to monitor
what is going on so I have more information to work it out for myself.
Can someone please tell me where I am going wrong or point me to a suitable
publication which will give me clues to the inner workings.
Many thanks
- 5
- Table row rankingI need to be able to re-rank a row (ie move it up or down in the table using a
arrow icon - or some simular method)
Example:
Row 1 ABC
Row 2 RST
Row 3 XYZ
I now want XYZ to move up the list and be number 1 and ABC and RST to move
down the list as follows:
Row 1 XYZ
Row 2 ABC
Row 3 RST
Where can I go to find examples, scripts or what type of code to use? I don't
know where to start. All suggestions are greatly appreciated.
- 8
- Form to Insert a large amount of data in 1 go..Hello all,
I have a form that inserts a record and its working well enough.
The problem I have is that the form takes a lot of data from the user and
depending on the speed its filled in some users are getting times out I think?
They dont get an error they tellme they get a page cannot be displayed at the
end when they submit?
This puzzles me because Id have thought they would have been thrown to the log
in and the log in would send them to the previous URL ??
Anyway all I can deduct is that they are taking too long to fill it out and i
ned to do something eithr split the form into a couple of forms which would be
a real pain??
Id be greatfull to hear how you guys accomplish large input forms.
Thanks
Tag
- 8
- Required Form Field Ext.Are there any extensions available for forms built in Dreamweaver MX 2004 that
require the form user to fill in all fields. I have one that kind of halway
works in a Mozilla browser. It will bring up a dialog box telling you what
fields have not been filled and when you click OK it takes you to the
incomplete confirmation page instead of forcing you to fill in all of the
fields. And this happens only in a Mozilla browser. Any cross-browser platform
ext?
- 8
- Close Browser Window behaviourHi,
Not an ideal solution this... but the boss wants a website to open (from the
first page) in a browser window without any toolbars, address bars etc.
I figure the only way to do this is to build a Redirect page with a 'Open
Browser Window' behaviour with the Onload action attached to a small
transparent gif image.
Can anyone please point me towards a Javascript behaviour that I can then add
to the redirect page to get it to close after the redirect?
(I know it's kinda bad-practice this, forcing browser windows to close, and if
anyone can suggest an alternative to get an initial webpage to open up in a
'bare' browser window then i'm desparate to know!)
cheers
Jon
- 11
- Replace comma with dotI have an update form to update an amount. The amount is stored in a database
as a decimal 10,2. When I request the update form I get the amount as 1000,00
due to the fromatting I'm using. When I alter the amount in 1000,55 and send
the input then everything before the comma gets updated and all that comes
after is gone. If I type a dot instead of the comma then the amount is updated
correctly. How can I do the update statement so that the comma gets replaced by
a dot?
Update statement:
if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "frmBudget")) {
$updateSQL = sprintf("UPDATE tbl_budgets SET budget=%s WHERE schoolid=%s",
GetSQLValueString($_POST['budget'], "double"),
GetSQLValueString($_POST['schoolid'], "int"));
Thanks in advance!
Robin
- 12
- What type o Extension is needed?Hi Everyone - was wondering if someone can point me in the right direction. I
am a coder but am trying to make a 'easy front end' for designers and so I
immediatley thought of DW. The problem is that what I want to do does not jump
out at me what technology to use for extending DW.
I will explain what I want to achieve first:
I would like to have a 'tag' with attributes that can be inserted into the
Code view yet behave differently in the design view (in fact totally
different). Perhaps an example. Lets say I make a tag called
<myLogo sizeX="200" sizeY="150">
I would like that to be inserted into the Code View yet the Design View would
have something like
<div class="myLogo" style="width: 200px; height: 150px">Logo</div>
So in essence the design view would allow the designer a representation of
what would be there once the server has parsed the <myLogo> - and so they can
do the styling. with normal css. This is not a real example - I am trying to
simplify it a bit (A real one woudl be something like <mySearchResults> and it
puts out a dummy search result for them to style) I guess I am trying to
emulate a language in a way - I put in my tag and the design view spits out the
html it would generate.
What I have looked at so far in extending DW
I was thinking that Tags would be the way to go - but it seems you can only
return what is going to be in both the Design and Code window. There was a
glimmer of hope with the component documentation as it seems to differentiate
between the Code View and Design View with the 'getCodeViewDropCode()' API and
the 'handleDesignViewDrop()' - But it is not immediately obvious that this is
what I should use. Also i seems to know about different DOMS for boh Code and
Design (allowing them to be sync'ed or not)
I basically want to do two things I keep going back to inserting a table in DW
where the Design View is able to have the little green sizing arrows and the
display pushing and pulling of cells - all of which could be done in javascript
and then repopulate the code view with updated code OR the other way around do
something in the code and somehoe it repopulates the Design view.
I believe I am looking for some hidden file that the Design view uses to
render for the component. And leave the Code view alone
I sure hope that makes some sense - I would really appreciate someone pointing
me in the right direction here - as I am getting a little frustrated trying to
find what I want to do
Thanks
Really appreciate any replies
- 12
- Dreamweaver 4Can anyone explain why the back ground in browse mode changes to grey - when
its not set to grey, is it to say the coding is wrong?
- 13
- Best ecart extension?Hi.
I wonder if anyone can recomend a great (or the best...? ) ecart/ecommerce extension for DW - using asp/vbscript.
Any?
Bj?rn.
- 15
- Dreamweaver CodeCan anyone can tell me why dreamweaver put MM_insert inside a POST
and for what is use.
Thanks for the help
- 16
- ASP/VBS Number of users leftHi,
I need to display a countdown of available memberships on all pages of a
site, what would be best practise for this as I do not want to create a
recordset on everypage, is there a way to achieve this?
the calculation is 500 - number of registered users
Regards,
Sanj
|
| Author |
Message |
MarkusReady

|
Posted: 2007-3-20 12:51:03 |
Top |
dreamweaver, Some beginner help
I need to develop what I think is a basic form for collecting data. I have
done this in Frontpage, and had the data emailed in a CSV format to an email
address. However, I need a form I can deliver to clients that do not use
Frontpage for their web site. That is, I must deliver this "form" to them, and
they will provide a link to this form. Their customers will click on this
link, fill in the form, and submit it.
When the form is submitted, I need the data to be stored in an Access table
along with other submissions. The UNC path to this table will be accessible to
my access app. From there, my access programs will integrate this data into my
access app for them, where they then manage the customer info sent in this way.
I am a Visual Basic/Access programmer that has not done any web proramming, so
not sure where to start.
Actually, I started by installing Apache on my desktop so I can experiment. I
believe Dreamweaver sounds like it may be a good way to develop this kind of
app. but some very basic questions:
- Do I understand correctly that Dreamweaver, unlike Frontpage, acutally
creates a PHP app that I can then deliver to my client and they will be able to
use as outlined above?
- If yes, is this PHP code portable enough that it would run on most of my
clients web servers?
- Is it possible Dreamweaver can allow me to create this data collection form
and integrate it into either an existing Frontpage web site or into a non
Frontpage web site?
Thanks for any help you can give to get me started,
Mark
|
| |
|
| |
 |
Murray *ACE*

|
Posted: 2007-3-20 19:09:00 |
Top |
dreamweaver >> Some beginner help
> - Do I understand correctly that Dreamweaver, unlike Frontpage, acutally
> creates a PHP app that I can then deliver to my client and they will be
> able to
> use as outlined above?
No. DW doesn't create an app to do this. You must do that yourself, and
you can *use* DW to do it. But - I am not quite sure I understand the
nuance of your question. Using DW, you can create the form, and you can
create the script that processes the form. When uploaded to the website,
the form will collect info from the visitor, and when it's submitted to the
script, the info will be written into a database (on the site), and sent to
the client by email. But your description sounds a bit different than
this - is it?
> - If yes, is this PHP code portable enough that it would run on most of my
> clients web servers?
PHP will run on any server that supports PHP.
> - Is it possible Dreamweaver can allow me to create this data collection
> form
> and integrate it into either an existing Frontpage web site or into a non
> Frontpage web site?
It's possible although dangerous. Non-FP sites are no problem, but trying
to work on an active FP site can be quite tricky, depending on whether FTP
is disabled, or whether the site is using any FP Server Extension
functionality.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"MarkusReady" <email***@***.com> wrote in message
news:etnp7n$e6f$email***@***.com...
>I need to develop what I think is a basic form for collecting data. I have
> done this in Frontpage, and had the data emailed in a CSV format to an
> email
> address. However, I need a form I can deliver to clients that do not use
> Frontpage for their web site. That is, I must deliver this "form" to
> them, and
> they will provide a link to this form. Their customers will click on this
> link, fill in the form, and submit it.
>
> When the form is submitted, I need the data to be stored in an Access
> table
> along with other submissions. The UNC path to this table will be
> accessible to
> my access app. From there, my access programs will integrate this data
> into my
> access app for them, where they then manage the customer info sent in this
> way.
>
> I am a Visual Basic/Access programmer that has not done any web
> proramming, so
> not sure where to start.
>
> Actually, I started by installing Apache on my desktop so I can
> experiment. I
> believe Dreamweaver sounds like it may be a good way to develop this kind
> of
> app. but some very basic questions:
>
> - Do I understand correctly that Dreamweaver, unlike Frontpage, acutally
> creates a PHP app that I can then deliver to my client and they will be
> able to
> use as outlined above?
> - If yes, is this PHP code portable enough that it would run on most of my
> clients web servers?
> - Is it possible Dreamweaver can allow me to create this data collection
> form
> and integrate it into either an existing Frontpage web site or into a non
> Frontpage web site?
>
> Thanks for any help you can give to get me started,
> Mark
>
|
| |
|
| |
 |
MarkusReady

|
Posted: 2007-3-21 4:44:00 |
Top |
dreamweaver >> Some beginner help
ACE,
> No. DW doesn't create an app to do this. You must do that yourself, and
you can *use* DW to do it.
Ah, I am starting to see. So DW lets me create the data entry form, and I
attach code to the submit button in the form to upload that info into a
database at the site. If the site server is on an intranet, then that server
could be made available to my app through UNC, and my app could then monitor
these incoming entries in the database, and upload the data to another table
inside my app. Is that correct?
> ... and when it's submitted to the
script, the info will be written into a database (on the site), and sent to
the client by email.
When you say written into a database, does this mean there is an existing
database of all responses from other users of the form on the site and this
user's responses are added to that database? Or (more likely I imagine) is
this user's responses used to create a new access table just for that one user.
Related to that, does this mean the info is then sent as a database with one
record holding the responses to the form for just one user? Is it emailed as
an attachement e.g., an ms access table attached to an email with the table
having one record for the responses for one user?
If this process is a collection of one record tables, then I imagine I would
need to send all emails to one address used exclusively for collecting this
data, and then use a VB program to monitor that email address and collect these
responses into one database that is then merged into my app for further
processing. But if the reponses can be submitted directly to a database of all
respondents, then my app would only monitor the database and not the email
location where the response tables are being sent.
Hope I expressed this ok. My goal is obviously to allow the data to be
collected thru the internet, but then get that data into my app so it can then
be managed further.
More questions I'm afraid:
Do I write the submit code in PHP to deliver the data to the database?
With FP, forms that collect data can only be run on an FP site. If I create a
DW form to collect the data, what site restrictions would I run into delivering
it to different clients (e.g., does the form actually get shipped to my client
as a .php and is therefore independent of DW and can run on any server
supporting PHP)?
Really appreciate your help. Trying hard to get my head around how this would
work.
Thanks again,
Mark
|
| |
|
| |
 |
Murray *ACE*

|
Posted: 2007-3-21 5:52:00 |
Top |
dreamweaver >> Some beginner help
> inside my app. Is that correct?
Yes, more or less.
> So DW lets me create the data entry form, and I
> attach code to the submit button in the form to upload that info into a
> database at the site.
Actually you make the form submit its data to a processing script that you
also create (by way of the action attribute of the form tag, e.g., <form
action="myscript.php"...). It's this script that sends emails, and enters
data into the database.
> When you say written into a database, does this mean there is an existing
> database of all responses from other users of the form on the site and
> this
> user's responses are added to that database?
Yes, but of course you start at record #1 at some point.
> Or (more likely I imagine) is
> this user's responses used to create a new access table just for that one
> user.
Well, that would depend on what you wanted to do, but usually, you would
have created a table of records, each of which contains the info from one
form.
> Is it emailed as
> an attachement e.g., an ms access table attached to an email with the
> table
> having one record for the responses for one user?
No - the email is formulated and formatted completely separately from entry
into the database.
I'm afraid I'm exhausted chasing your incremental questions, though....
> Do I write the submit code in PHP to deliver the data to the database?
Or JSP, or ASP, or .Net, yes.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"MarkusReady" <email***@***.com> wrote in message
news:etph46$pqn$email***@***.com...
> ACE,
>
> > No. DW doesn't create an app to do this. You must do that yourself,
> > and
> you can *use* DW to do it.
>
> Ah, I am starting to see. So DW lets me create the data entry form, and I
> attach code to the submit button in the form to upload that info into a
> database at the site. If the site server is on an intranet, then that
> server
> could be made available to my app through UNC, and my app could then
> monitor
> these incoming entries in the database, and upload the data to another
> table
> inside my app. Is that correct?
>
> > ... and when it's submitted to the
> script, the info will be written into a database (on the site), and sent
> to
> the client by email.
>
> When you say written into a database, does this mean there is an existing
> database of all responses from other users of the form on the site and
> this
> user's responses are added to that database?
> Or (more likely I imagine) is
> this user's responses used to create a new access table just for that one
> user.
> Related to that, does this mean the info is then sent as a database with
> one
> record holding the responses to the form for just one user? Is it emailed
> as
> an attachement e.g., an ms access table attached to an email with the
> table
> having one record for the responses for one user?
>
> If this process is a collection of one record tables, then I imagine I
> would
> need to send all emails to one address used exclusively for collecting
> this
> data, and then use a VB program to monitor that email address and collect
> these
> responses into one database that is then merged into my app for further
> processing. But if the reponses can be submitted directly to a database
> of all
> respondents, then my app would only monitor the database and not the email
> location where the response tables are being sent.
>
> Hope I expressed this ok. My goal is obviously to allow the data to be
> collected thru the internet, but then get that data into my app so it can
> then
> be managed further.
>
> More questions I'm afraid:
> Do I write the submit code in PHP to deliver the data to the database?
> With FP, forms that collect data can only be run on an FP site. If I
> create a
> DW form to collect the data, what site restrictions would I run into
> delivering
> it to different clients (e.g., does the form actually get shipped to my
> client
> as a .php and is therefore independent of DW and can run on any server
> supporting PHP)?
>
> Really appreciate your help. Trying hard to get my head around how this
> would
> work.
>
> Thanks again,
> Mark
>
>
>
|
| |
|
| |
 |
MarkusReady

|
Posted: 2007-3-21 8:51:00 |
Top |
dreamweaver >> Some beginner help
ACE,
Thanks for hanging in there for me, and for all your patience.
So to recap:
- I create a form with DW, along with a script file (e.g., myscript.php) that
will be run when the user submits the form.
- the script file could deliver the data to a database, or email it, or both
- If my client is on an Intranet, and server access is available, my app can
monitor the database and collect the data to deliver it to my app using UNC
path to the database.
- If my client is contracting for a web server, I could create the script to
deliver the data to another location (thru FTP, email), where my app can get
access to the new info and upload it.
- If a client is using FP for their web site, safest (and easiest for me since
I know FP well) would be to deliver a FP form for collecting and submitting the
data.
So the advantage of using DW for this data collection project is I can create
a form that will run on most web sites that are not using FP, is that correct?
Lastly, do you know where I might find example PHP scripts for delivering the
form data to a database.
Thanks again, and I apologize for my penchant for the details,
Mark
|
| |
|
| |
 |
Murray *ACE*

|
Posted: 2007-3-21 9:25:00 |
Top |
dreamweaver >> Some beginner help
> - the script file could deliver the data to a database, or email it, or
> both
Or more.
> So the advantage of using DW for this data collection project is I can
> create
> a form that will run on most web sites that are not using FP, is that
> correct?
Yes, but you can do that with FP, too. You don't have to use their server
extensions to achieve this functionality.
> Lastly, do you know where I might find example PHP scripts for delivering
> the
> form data to a database.
DW comes with a variety of server behaviors that will allow you to Insert,
Update, or Delete records from a database all triggered by form submission.
You could investigate them, or your could go look on the Adobe sites for
their tutorials on how to do this....
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"MarkusReady" <email***@***.com> wrote in message
news:etpvio$dim$email***@***.com...
> ACE,
>
> Thanks for hanging in there for me, and for all your patience.
>
> So to recap:
> - I create a form with DW, along with a script file (e.g., myscript.php)
> that
> will be run when the user submits the form.
> - the script file could deliver the data to a database, or email it, or
> both
> - If my client is on an Intranet, and server access is available, my app
> can
> monitor the database and collect the data to deliver it to my app using
> UNC
> path to the database.
> - If my client is contracting for a web server, I could create the script
> to
> deliver the data to another location (thru FTP, email), where my app can
> get
> access to the new info and upload it.
> - If a client is using FP for their web site, safest (and easiest for me
> since
> I know FP well) would be to deliver a FP form for collecting and
> submitting the
> data.
>
> So the advantage of using DW for this data collection project is I can
> create
> a form that will run on most web sites that are not using FP, is that
> correct?
>
> Lastly, do you know where I might find example PHP scripts for delivering
> the
> form data to a database.
>
> Thanks again, and I apologize for my penchant for the details,
> Mark
>
|
| |
|
| |
 |
MarkusReady

|
Posted: 2007-3-22 5:06:00 |
Top |
dreamweaver >> Some beginner help
Ace,
Thanks again for all your help. I see a starting pont now thanks to you.
Mark
|
| |
|
| |
 |
| |
 |
Index ‹ dreamweaver |
- Next
- 1
- Form Post & Search Results (probably very simple)This is probably very simple, and i kind of feel sill asking, but I have a
query I could really do with some help with,.. I have a form (search form),
made up of a text field and two list items, the list items are required, but
the user need not enter anything in the text field, (I've attached the code)
The Form posts the data to a search results page, where results are displayed,
the results are generated from a recordset that looks like this - SELECT
JBCPID, JBCPCandidateID, JBCPProfileLetter, JBCPContractType, JBCPSalary,
JBACAID, JBACAName FROM dbo.JBCProfile, dbo.JBACandidate WHERE
JBCPProfileLetter LIKE %MMColParam% AND JBACAID = JBCPCandidateID AND
JBCPSiteID = MMColParam4 AND JBCPLocation = MMColParam2 AND JBCPCategory =
MMColParam1 AND JBCPLive = 'y' Ehere MMColParam is the textfield variable,
MMColParam1 is one of the list items, MMColParam2 is the other and MMColParam4
identifies the site that ran posted the data... The problem that I'm having is
that no results are produced if the textfield is left blank and only the two
list items are used to search the database, Does anyone have any idea how to
get around this? Thanks
<form id="cvsearch" name="cvsearch" method="post" action="cvsearchresult.asp">
<table border="0" cellpadding="0" cellspacing="0"
class="cvsearchbox">
<tr class="bluetr2">
<td class="bluetd">CV Search</td>
<td> </td>
</tr>
<tr class="fonteight2">
<td class="postvacancyleft">Keyword:</td>
<td class="topbottompadding3"><label>
<input type="text" name="keyword" id="keyword" />
</label></td>
</tr>
<tr class="fonteight2">
<td class="postvacancyleft">Job Category:</td>
<td class="topbottompadding3"> <select
name="jscat5" id="jscat5">
<option value="">Select</option>
<%
While (NOT Categories.EOF)
%><option
value="<%=(Categories.Fields.Item("JBCategoryValue").Value)%>"><%=(Categories.Fi
elds.Item("JBCategoryLabel").Value)%></option>
<%
Categories.MoveNext()
Wend
If (Categories.CursorType > 0) Then
Categories.MoveFirst
Else
Categories.Requery
End If
%>
</select> </td>
</tr>
<tr class="fonteight2">
<td class="postvacancyleft">Job Location</td>
<td class="topbottompadding3"> <select
name="jsloc5" id="jsloc5">
<option value="">Select</option>
<%
While (NOT Locations.EOF)
%><option
value="<%=(Locations.Fields.Item("JBLocation").Value)%>"><%=(Locations.Fields.It
em("JBLocation").Value)%></option>
<%
Locations.MoveNext()
Wend
If (Locations.CursorType > 0) Then
Locations.MoveFirst
Else
Locations.Requery
End If
%>
</select> </td>
</tr>
<tr>
<td> </td>
<td class="sendbar"><img src="../images/search2.jpg"
alt="Search" width="73" height="20"
onclick="formButtonFever('cvsearch','submit')"
onmousedown="YY_checkform('cvsearch','jscat5','#q','1','Field \'category\' is
not valid.','jsloc5','#q','1','Field \'location\' is not valid.');return
document.MM_returnValue" /></td>
</tr>
</table>
</form>
- 2
- ADODB.Command error '800a0bb9'I get the below error with a rather simple ASP file:
ADODB.Command error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.
/about_us/Products.asp, line 16
------------------
Line 16 is:
rsProducts_cmd.ActiveConnection = MM_connProducts_STRING
--------------------------
my connection file is:
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="false"
' Catalog=""
' Schema=""
Dim MM_connBookSearch_STRING
MM_connBookSearch_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=g:\1F0\beginningssvcs.com\web\db\ProductDB.mdb"
%>
----------------------------
This works fine on the computer on which I do the development, but not on the
server computer. Please help! :-) I have run out of ideas as to why this
might be happening or on how to fix it.
Thanks!
- 3
- Login User server Behaviour causes page to failHi,
I have created a basic login form, and when I create the login user behaviour
the page then fails to open. If I remove the login behaviour then it loads fine.
I was getting an error sometimes in Live data view, something like, the
include cannot use ".." when ...parent directory. Sorry that its vague but i
cannot reproduce it. I updated Dreamweaver from 8.0 to 8.02 this morning
thinking the patch might fix it but I now get the pop up window when trying to
create the login user behaviour:
"While executing applyserverbehaviour in login user.htm, a JavaScript error
occured"
and now the login user behaviuor will not apply.
All other ASP pages calling information from the database works fine. The
includes are correct also.
hope this heps
cheers
- 4
- Google maps how toHello all, well I spent about a week learning how to make the google maps
work, so I decided to share what I learned in this video tutorial, there is
also all the code in a mini application that you can download
http://sfsurvey.com/gmaps/
Cheers
wayne lambright
http://mxExtensions.com
- 5
- Adobe Buys InterAKTI was just wondering if Adobe will ever put on their website, some sort of a
press conference transcript about acquiring InterAKT, a company most of us have
come to love and enjoy their product extensions. I would like to know if Adobe
just bought InterAKT to get rid of the "competition" in the light of the fact
that they have similar plans for future Dreamweaver and other products. For
some of us, this acquisition is a big deal and would like to see something on
your website about it. We would like to know what the future holds for some of
us who have come to love InterAKT products.
I feel as if the guys at Adobe dont really care and treating this acquisition
as crap....I think InterAKT deserves the same kind of attention as Macromedia
did when they were acquired by Adobe. It is not fair and no one obviously cared
about InterAKT customers. Wrong, wrong, wrong!!! Greed!!! Shameful!!!
Sorry, but that is how and a bunch of other InterAKT clients feel!
- 6
- [MySQL][ODBC 3.51 Driver]Acess denied for userAfter some major connection problems I was able to successfully test my
connection but I noticed that my tables aren't showing up. I can't edit or add
a record set because every time I do I get a "no tables found" message when my
tables seem to work fine online. I can't really do much without seeing and
using my tables.
So I cleared my script files and connection files and re-established them
after researching fixes. Well now I can't connect at all. I get a
"[MySQL][ODBC 3.51 Driver]Acess denied for user
'ODBC'@'p3swh044.shr.phx3.secureserver.net'(using password: YES)" message. My
password and user name are correct. I don't know SQL and I am not writing it
by hand. It is all through dreamweaver.
I am using Dreamweaver MX I believe. can anyone help? Thanks!
- 7
- HTML search fieldIs there a way of placing a search field and how to program it where it
searches all of your website based on the keywords or is this not possible? I
know a search field can be done if you have a dynamic database and you can
search the content within the database but how about only html documents. Is
there a thing?
Thank you,
AdonaiEchad
- 8
- mysql connection probHi, I have installed php,mysql and apache on my windows platform computer. I
have made up a database in Mysql admin. I am trying to get dreamweaver to see
the database but it doesnt connect. I click ok even though when I hit the test
button it gives me an error (thought somethingg might work) but when I look in
the database tab under tables there is nothing there?? I have recently done
these changes via a friend and we have switched off IIS and FTP so I could have
apache as my web server. We have changed the config file to look for my
website still in the Inetpub folder like I had with IIS, so that is my testing
folder. I'm not sure now how I get my website uploaded now since turning off
the FTP that is linked to IIS, how do I upload now and what settings do I have
to I h ave to change in my remote folder? Hope you can help I have read
information from dreamweaver help but it has confused my no end. Thanks
Denise
- 9
- Seeking Assistance From David Powers Again, PleaseDavid,
I am using your drop down menu of files script from page 197 of PHP Solutions.
I have successfully adapted it to read in a list of PDF's from one of my
subdirectories.
However, for the life of me, I can't figure out how to actually make one of
the PDF's load. I have tried every syntax/combination in the Action property I
can think of with no luck.
What I would like to do is either: 1) select the PDF from the drop down and
then have it load into the browser or 2) selec the PDF fromt the drop down and
then press a "download" button and have the file load into the browser.
Can you please help me figure this out?
Thanks in advance. Below is my code so far.
Glenn
<!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>Image drop-down</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="PDFs/<?php echo
$_POST['pix']; ?>.php">
<p>
<select name="pix" id="pix">
<option value="">Select an image</option>
<?php
include('Includes/buildFileList5.php');
buildFileList5('PDFs');
?>
</select><label></label>
</p>
<p>
<label>Download
<input type="submit" name="Download" id="Download" value="Submit" />
</label>
</p>
</form>
</body>
</html>
- 10
- Removing unused CSS declarationsHi,
My CSS document has become a bit of a beast! Is there any way of removing CSS
declarations from a stylesheet that are unused in the web project. I know
Dreamweaver has a reports facility that can remove some types of redundant
code, but can't see that there is a feature to do this particular thing.
Any help would be appreciated.
- 11
- 12
- Can you recommend an extension?I am going to create a website that allows artists to put their artwork on my
website and people will buy the artwork. In return the artists will get paid
10% of the sales from their artwork. I am looking for an extension or program
that will help me do this, by tracking the sales and in turn paying the
artists. Can someone recommend an extension or a peice of software that will
do this? Even open source will work...thanks.
- 13
- java script error when updated to dreamweaver8using dreamweaver 8 error pop up message
while executing in insertbar.xml java script error Reference Error: Server
Model_JSP is not defined.
How might I correct this?
I have unistalled and reinstalled dreamweaver. I have removed and reinstalled
extensions and still this pops up.
Thank you for any feedback.
gloria
- 14
- Export to Excel in ASP JavascriptHi -- I am using ASP Javascript for my site, and I need to allow a user to
download data from a recordset into an Excel file -- or a comma- or
tab-delimited file. All I can find are solutions for VBScript. Any ideas?
Thanks.
- 15
- Dreamweaver Error on Startup - Help Needed Hey,
This is my first post - and I've searched the site and haven't been able to
find help regarding this.
Dreamweaver 8 was working fine for a month or so - then when I was working on
an HTML document - I switched to the 'code' window - when I did that - I
recieved some 'java' error, after which DW closed.
When I attempted to re-open Dreamweaver - I recieved a Visual C++ Runtime
Error.
it says:
Runtime Error!
Program C:\Program Files\Macromedia\Dreamweaver 8\Dreamweaver.exe
This application has requested the Runtime to terminate it in an unusual way.
Please contact the applications support team for more information.
And I've looked and looked, and tried different fixes listed on the site - but
nothing has worked.
I've uninstalled/re-installed numerous times, all sorts of things.
Anyone have any ideas!?
|
|
|