| Connect to MySQL with .NET Connector |
|
 |
Index ‹ dreamweaver
|
- Previous
- 1
- setUpFindReplace for 'selected files in site'I've written a setUpFindReplace routine but it only works on the current open
document.
The Find requester has 'Find In:' option of 'Selected Files in Site'. Where
can I find/use this option programmatically?
- 1
- dreamweaver, mysql, php setup and connectionHello, I had my dreamweaver / php / mysql working fine on a previous computer a
year or so ago and now am having problems getting it to work. I have installed
php, installed mysql and installed dreamweaver. I can view php pages, mysql
admin lets me add tables and what not and dreamweaver works fine.
When i create a site and a php file and attempt to create a database
connection i get a "unidentified error has occured" and can not connect.
i dont remember doing anything special last time, but it has been a while. i
was lookng around the forums and read that i should have the ";" taken off the
"extension=php_mysql.dll" line in C:\PHP\BACKUP. But that doesnt appear to do
anything as i still have the same problem.
If i run
<?php
echo phpinfo();
?>
I do not see a MYSQL section so it is not installed right or did i miss
another random switch?
DreamweaverMX, mysql4.1 , php 5.0.4 windows xp.
Thank you for your help.
- 3
- 4
- Dreamweaver automatically changes my tag attributes!I just submitted this to Dreamweaver's Bug Report form, but I've sent several
bug reports in the last year, and the latest update to dreamweaver is still
March 2004 I believe, not to mention they don't respond individually and I want
to find some answers sooner than the next update. Just wondering if anyone has
had the same problem? Here's what I submitted to Macromedia: I develop a lot
of PHP code, often intermixed with HTML and JavaScript. Perhaps that has
something to do with the issue; perhaps not. As it is, I end up doing a lot of
debugging because I forget to pass a variable along and then mySQL throws an
error. Well, I end up doing MORE debugging than I should normally have to do,
because sometimes when I finally find the reason my code isn't working, it's
because Dreamweaver replaced one of my 'href' attributes with 'abbr', or one of
my '<tr id='xxx'>' with '<tr action='xxxx'>'. Just today I found out that my
problem was due to this odd looking string which was part of the end of an href
string '&add=1%0A%09%20'. What in the world??? Somehow, just through
normally editing/saving/uploading, Dreamweaver is changing my HTML code and
it's very frustrating. I'm considering trying to find another WYSIWYG editor,
but I don't want to use FrontPage, and I'm not sure what else is out there.
(While I do a lot of hand coding, it's nice to do quick & easy changes in a
Design view, or to click on a table then switch to Code view to easily get to
that particular code). Anyone else have this same problem?
- 5
- Changes to ASP Command Variables in Dreamweaver 8.0.2In the Dreamweaver 8.0.2 Updater, changes were made to the ASP code that
Dreamweaver generates. One specific change is to the ASP Command server
behaviors.
When you fill out the Command dialog box, Dreamweaver 8.0.2 now asks you to
provide the ?Type? and ?Size? for the variables without any hinting or
drop-down menus, so you have to know what to type in these fields. You can find
all the details at the following links:
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4e6b330a
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/mdcs
tdatatypeenum.asp
Anyway...
I have built a web application (using Dreamweaver 8.0.2, ASP VBScript and MS
Access 2000 database). I have a field in one of the tables named
IssueReadCount (Data Type: Number; Field Size: Long Integer). This field stores
the number of times the page is read.
I added an ?UPDATE? ASP Command Server Behavior to the page as follows:
UPDATE tblIssues
SET IssueReadCount = IssueReadCount + 1
WHERE IssueID = MMColParam
MMColParam = Request.QueryString ("iss_id")
'Type' variable: Double (Numeric data type for MS Access, MS SQL, MySQL)
'Size' variable: -1 (Numeric, Boolean and Date/Time data types always use -1
as the size)
Dreamweaver resulting code looks like:
<% ' this is to increment the IssueReadCount in tblIssues table
Set cmdIssueReadCount = Server.CreateObject ("ADODB.Command")
cmdIssueReadCount.ActiveConnection = MM_connIssuesManager_STRING
cmdIssueReadCount.CommandText = "UPDATE tblIssues SET IssueReadCount =
IssueReadCount + 1 WHERE IssueID = ? "
cmdIssueReadCount.Parameters.Append
cmdIssueReadCount.CreateParameter("MMColParam", 5, 1, -1,
MM_IIF(Request.QueryString("iss_id"), Request.QueryString("iss_id"),
cmdIssueReadCount__MMColParam & ""))
cmdIssueReadCount.CommandType = 1
cmdIssueReadCount.CommandTimeout = 0
cmdIssueReadCount.Prepared = true
cmdIssueReadCount.Execute()
%>
My problem is that every time the page is read the IssueReadCount is
incremented by 2 (not 1 as I need).
I?ve tried just about everything I can think of and can?t get it to increment
by 1. Does anyone have an idea what I?m doing wrong? Any suggestion will help.
Bill
- 5
- DW reformats htmlWhen I create an html doc in a text editor, such as TextPad, and then open it
in DW, DW rearranges the structure of my code.
For example:
<span class="nav">
<a href="#">link</a>
<a href="#">link</a>
<a href="#">link</a>
</span>
becomes
<span class="nav"> <a href="#">link</a> <a href="#">link</a> <a
href="#">link</a></span>
This is just in the code, and the web output is fine, but it totally destroys
any kind of organization to my html.
Any suggestions for how to disable this rude feature?
Thanks much!
Sara
- 5
- 5
- Checkbox state not displayingHi Everyone,
I'm sure I'm doing something really dumb here but I cannot get my checkbox
state to show as true when making a call from my Access database. The checkbox
just displays unticked. The code I am using is:
<input <%If (CStr((rsEditProfile.Fields.Item("approvedSupplier").Value)) =
CStr("true")) Then Response.Write("checked=""checked""") : Response.Write("")%>
name="approvedSupplier" type="checkbox" id="approvedSupplier">
The databse record is selected and so is true but the checkbox doesn't diplay
ticked. Any help please appreciated.
Ta Jules x
- 6
- cdoThe solution that you give it was ok but actually I have another problem with
the same application _when I try to submit the email I have this message in
explorer
? Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid class string
/ptesiki/www/email_02.asp, line 11
And probably the problem is with the SMTP server
- 6
- the saga continuesI have finally gotten the new records in my update form to update in the right
place instead of creating another row, yay me. My new problem is I now want new
values from the form to add onto the old ones and not replace them, I did post
a similar question earlier in the week and thanks for any help from that.
some useful info: have a table called brokers and the field i want to update
is broker_rating
Here is I hope the relevent code to look at:
This is the form update form action code:
$editFormAction = $_SERVER;
if (isset($_SERVER)) {
$editFormAction .= "?" . htmlentities($_SERVER);
}
if ((isset($_POST)) && ($_POST == "form1")) {
$updateSQL = sprintf("UPDATE brokers SET broker_rating=%s,
broker_num_votes=%s WHERE id=%s",
GetSQLValueString($_POST, "int"),
GetSQLValueString($_POST, "int"),
GetSQLValueString($_POST, "int"));
mysql_select_db($database_broker, $broker);
$Result1 = mysql_query($updateSQL, $broker) or die(mysql_error());
}
and this is the actual form code:
<form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<table align="center">
<tr valign="baseline">
<td nowrap align="right">Broker_rating:</td>
<td><select name="broker_rating">
<?php
do {
?>
<option value="<?php echo $row_valueset?>" <?php if
(!(strcmp($row_valueset, $row_brokers))) {echo "SELECTED";} ?>><?php echo
$row_valueset?></option>
<?php
} while ($row_valueset = mysql_fetch_assoc($valueset));
?>
</select>
</td>
<tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input type="submit" value="Update record"></td>
</tr>
</table>
<input type="hidden" name="id" value="<?php echo $row_brokers; ?>">
<input type="hidden" name="broker_num_votes" value="<?php echo
$row_brokers; ?>">
<input type="hidden" name="MM_update" value="form1">
</form>
thanks all
xtian
- 6
- Problems with Access, Vista, ASPHello, I'm using DW CS3 and ASP classic on a machine with Vista Ultimate and
having problems connecting to the MS Access Database via the testing server.
When I try to add the database connection and create a DSN through the dialog
box, I hit "Test" and get the following message:
[Microsoft][ODBC Microsoft Access Driver] Disk or network error.
[Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed
I suspect it is a permissions-based problem but have been unable to isolate
it. The database is in the directory, C:\Users\Public\Documents\Database. So
far at the folder level I have tried:
- verifying full control permission for the Administrators group
- giving full control permission to the IUSR_ComputerName account
I also verified the access database itself has no permission restrictions.
Incidentally I am new to CS3 and working through the book, "Adobe DW CS3 with
ASP, ColdFusion and PHP Training from the Source", specifically the example in
Chapter 7 using the newland database. I am somewhat familiar with dynamic web
development (veteran of GoLive 6) but am not up to speed on developing under
Windows Vista. BTW I have turned User Account Control off in Vista.
- 8
- Login using Domain Login IDI'd like to get the Domain login ID to use to log into Dreamweaver
applications. I'd like to log the user into a Dreamweave application (based on
their Domain Login ID) without requiring the user to enter another user ID and
password. I don't want to use an environment variable as it would be to easy to
change the environment variable and wouldn't be secure enough. I'd like to
know if DreamWeave can provide me with the Domain User ID. I'd also like
information from users on how they avoid requiring their users to supply a
user ID and password for each application. I will not be using shared PC's
where multiple users work under the same login id. Will require users to log in
using their specific domain user id. Thanks, Lee:)
- 8
- Database Lock file problems?I have had this problem consistently ever since I upgraded to Dreamweaver 8.
The problem is I am creating/modifying coldfusion pages on my intranet site
which has both .ASP and .CFM files and eventually none of the .ASP files will
work. And I know it is has to do with Access database lock file and I cannot
delete it because it says it is in use. I understand that if you are in the
actual database it will create a lock file and it will eventually hang up, but
I am not in the database file when this happens. I might be creating recordsets
but that is it. I downloaded a microsoft jet utility that shows who is actively
in the database and when this happens it shows the webserver is connected to
the database. The only way to clear the access lock file is to reboot. Any
ideas?
- 8
- Page Title not showing correctly. HelpI am using Dreamweaver CS3. My page title does not show correctly in the
tab of the window in Firefox or I.E. I click on view source and the
title is missing a letter, yet when I am in Dreamweaver the title is
O.K. This is the same for all the pages on my site.
Any help appreciated.
Richard
- 12
|
| Author |
Message |
EddyTheEagle

|
Posted: 2005-10-6 13:59:32 |
Top |
dreamweaver, Connect to MySQL with .NET Connector
Am I the only one who uses ASP.NET with a mySQL database? How do you guys connect to this database? I read something about myOLEDB, but my provider does not support that.
|
| |
|
| |
 |
EddyTheEagle

|
Posted: 2005-10-18 17:17:00 |
Top |
dreamweaver >> Connect to MySQL with .NET Connector
kick....
Is there a solution for this? Connecting ASP.NET and MYSQL with the .NET connector which is the official connector for mysql?
|
| |
|
| |
 |
| |
 |
Index ‹ dreamweaver |
- Next
- 1
- Greenbar Paper and Database ResultsAll I need to do is alternate the color of the backround from white to gray. I
really have no idea how to adjust the repeat region so that it can do this,
instead I end up showing double records. I know what I'm doing wrong, I just
don't know what is right.
Thanks
Troy
- 2
- Identifying and Rerouting Browsers
I'm having problems changing a homepage to make it compatible with Netscape
4. Is there a way to identify a Netscape 4 user and reroute them to a
different page on the site?
Thanks in advance
Paul R
- 3
- Gareth are you out there?Hey Gareth,
I did not mean to offend. I have done everything you have asked and it is still not working. i am going to email you my ftp site and details right now.
- 4
- 5
- 6
- Mini online Java gamesHi again people.
I'm thinking of making a little online Java game to go on my page. I've asked
my mate Simon and he told me that he doesn't know, he's never made an online
game before, only proper CD games. I was wondering if any of you guys could
help me because it would really spark interest in my page!
By the way, how much does an average domain cost?
Thanks
-mousey
- 7
- MX KartI have been using ultraCart (came free with a book) on a small commercial site
that has suddenly become busy - and it has been found out !!!! I need to use a
more robust shopping kart extension. I want to go this route as I don't want
to re-design the site. Interactiveonline's MX Kart looks similar in design but
is obviously more complex. Does anybody have any experience with using this
extension? Just looking for some feedback.
Many Thanks
Ian
- 8
- Trouble downloading Yahoo Merchant Solutions Extension, also Dreamweaver 8.0.2 UpdaterI am having trouble opening two files that I have downloaded for Dreamweaver 8.
One is the Dreamweaver 8.0.2 updater. The other is the Yahoo Merchant
Solutions Extension for Dreamweaver. I can download the files to my harddrive,
but I cannot open them I am using a Windows XP SP2 operating system.
I use a Windows XP SP2 laptop as a back-up computer, and on this laptop, I
have had no problem downloading and installing both of these Dreamweaver files.
Sooooooo, there seems to be a problem with my desktop computer. I have tried
turning off all antivirus and antispyware and firewalls when doing the
download, but that does not help. It is worth noting that I am having no
problems downloading updates for other software programs on my computer, so the
problem is somehow Dreamweaver specific.
Can anyone be of help with this problem?
Phil in Boston
- 9
- CDO mail errorI've some code here for CDOSYS
--
Jules
http://www.charon.co.uk/charoncart
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
- 10
- stupid picture uploading using PHPI have been trying to upload a file to a folder on the server, and display the
filename in the database, so that i can link to this file and display it. The
code i have works in one example, but not in the one that i am currently
working with and i have no idea why. I have ammended it correctly, but it still
doesnt work, can any body help? p.s. i think its the upload bit is at the end,
but am not entirely sure.
any help would be great.
Here is my code:
<?php require_once('Connections/mysql.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "",
$theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" :
"NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
$editFormAction = $HTTP_SERVER_VARS['PHP_SELF'];
if (isset($HTTP_SERVER_VARS['QUERY_STRING'])) {
$editFormAction .= "?" . $HTTP_SERVER_VARS['QUERY_STRING'];
}
if ((isset($HTTP_POST_VARS["MM_insert"])) && ($HTTP_POST_VARS["MM_insert"] ==
"form1")) {
$insertSQL = sprintf("INSERT INTO artistmembers (email, membernameid,
membername, memberpicture, membertext, memberposition) VALUES (%s, %s, %s, %s,
%s, %s)",
GetSQLValueString($HTTP_POST_VARS['email'], "text"),
GetSQLValueString($HTTP_POST_VARS['membernameid'],
"int"),
GetSQLValueString($HTTP_POST_VARS['membername'],
"text"),
GetSQLValueString($_FILES['memberpicture']['name'], "text"),
GetSQLValueString($HTTP_POST_VARS['membertext'],
"text"),
GetSQLValueString($HTTP_POST_VARS['memberposition'],
"text"));
mysql_select_db($database_mysql, $mysql);
$Result1 = mysql_query($insertSQL, $mysql) or die(mysql_error());
}
mysql_select_db($database_mysql, $mysql);
$query_loadmember = "SELECT * FROM artistmembers";
$loadmember = mysql_query($query_loadmember, $mysql) or die(mysql_error());
$row_loadmember = mysql_fetch_assoc($loadmember);
$totalRows_loadmember = mysql_num_rows($loadmember);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- DW6 -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable --><link rel="stylesheet" href="3col_leftNav.css"
type="text/css">
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style8 {font-size: 10px}
.style9 {font-size: 12px}
-->
</style>
<!-- TemplateParam name="Headline1" type="boolean" value="true" -->
<!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
</head>
<body>
<div id="masthead">
<h1 id="siteName">Soundstage</h1>
<div id="globalNav">
<a href="register.html">register</a> | <a href="login.html">login</a> | <a
href="logout.html">logout</a> | <a href="#">basket</a> |
<a href="#">checkout</a> |
</div>
<h2 class="style1" id="pageName">reviews...</h2>
<div id="breadCrumb">
<a href="#">breadcrumb</a> / <a href="#">breadcrumb</a> / <a
href="#">breadcrumb</a> /
</div>
</div>
<div id="navBar">
<div id="search">
<form action="#">
<label>search</label>
<input name="searchFor" type="text" size="10">
<input name="goButton" type="submit" value="go">
</form>
</div>
<div id="sectionLinks">
<h3>Section Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="artists.html">Artists</a></li>
<li><a href="genre.html">Genre</a></li>
<li><a href="city.html">City</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="#">Section Link</a></li>
</ul>
</div>
<div class="relatedLinks">
<h3>Related Link Category</h3>
<ul>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
</ul>
</div>
<div class="relatedLinks">
<h3>Related Link Category</h3>
<ul>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
<li><a href="#">Related Link</a></li>
</ul>
</div>
</div>
<!--end navBar div -->
<div id="headlines">
<h3>Artist of the week:</h3>
<p>
</p>
<div id="advert">
<img src="" alt="" width="107" height="66"> Ad copy ad copy ad copy. Ad
copy ad copy.
</div>
</div>
<!--end headlines -->
<div id="content"> </div>
<!--end content -->
<table width="53%" height="34" border="0">
<tr>
<td><a href="bandsection1.php"></a>
<p align="center"><a href="bandsection1.php">back to edit
band</a></p></td>
</tr>
</table>
<form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<table align="center">
<tr valign="baseline">
<td nowrap align="right">Membername:</td>
<td><input type="text" name="membername" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Memberpicture:</td>
<td><input type="file" name="memberpicture" value="uploadfile"
size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right" valign="top">Membertext:</td>
<td> <textarea name="membertext" cols="50" rows="5"></textarea> </td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Memberposition:</td>
<td><input type="text" name="memberposition" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input name="submit" type="submit" value="Insert Record"></td>
</tr>
</table>
<input type="hidden" name="email" value="">
<input type="hidden" name="membernameid" value="">
<input type="hidden" name="MM_insert" value="form1">
</form>
<p> </p>
<div align="left">
<p> </p>
</div>
<div id="siteInfo">
<img src="" width="44" height="22"> <a href="#">About Us</a> | <a
href="#">Site
Map</a> | <a href="#">Privacy Policy</a> | <a href="#">Contact Us</a> |
©2003
Company Name
</div>
<br>
<p> </p>
</body>
</html>
<?
echo $HTTP_POST_VARS['memberpicture'];
$uploaddir = '//ftpserver/www/bla/bla/bla/bla/';
$uploadfile = $uploaddir . basename($_FILES['memberpicture']['name']);
echo $uploadfile;
echo '<pre>';
if (move_uploaded_file($_FILES['memberpicture']['tmp_name'], $uploadfile)) {
echo "Your a mastermind.....\n";
}
else {
echo "Possible file upload attack!\n";
}
echo 'Here is some more debugging info:';
print_r($_FILES);
print "</pre>";
?>
<?php
mysql_free_result($loadmember);
?>
- 11
- Unable to download any extensionI cannot seem to download ANY extensions. I always get the following error
message:
[b]Internet Explorer cannot download push.cfm?extension BLAH BLAH BLAH from
adobe.com Internet Explorer was not able to open this Internet site.
The requested site is either unavailable or cannot be found. Please try again
later.
[/b]
I've tried several times over several days. I cannot find anything on support
to address this.
I'm just learning Dreamweaver though self-tutorials and a textbooks, so this
is very frustrating.
Any help appreciated!!
Thank you,
Scott
- 12
- Database Fields Dont OutputI have a problem that is driving me crazy. I have been using DW for several
years and have never ran into this problem.
I have a form with the fields: (8 Total - 4 Technical, 4 Purchasing)
Technical Name Purchasing Name
Technical Title Purchasing Title
Technical Phone Purchasing Phone
Technical EMail Purchasing EMail
If I set the ititial value for the 4 technical fields they output correctly.
When I add the initial value for the 4 purchasing fields the technical title,
phone, and email are blank.
In the source code all looks as I would expect. See attached code for the 4
table rows involved.
Thanks,
Mike
<tr>
<td nowrap class="maintext">Technical Contact: <strong><font
color="#FF0000">*</font></strong></td>
<td><input name="TechName" type="text" class="textfield2" id="TechName"
onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("TechName").Value)%>" size="22"
maxlength="20"></td>
<td class="maintext">Purchasing Contact: </td>
<td><input name="PurchName" type="text" class="textfield2" id="PurchName"
onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("PurchName").Value)%>" size="22"
maxlength="20"></td>
</tr>
<tr>
<td nowrap class="maintext">Title:</td>
<td><input name="TechTitle" type="text" class="textfield2" id="TechTitle"
onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("TechTitle").Value)%>" size="22"
maxlength="20"></td>
<td class="maintext">Title:</td>
<td><input name="PurchTitle" type="text" class="textfield2"
id="PurchTitle" onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("PurchTitle").Value)%>" size="22"
maxlength="20"></td>
</tr>
<tr>
<td nowrap class="maintext">Phone: <strong><font
color="#FF0000">*</font></strong></td>
<td><input name="TechPhone" type="text" class="textfield2" id="TechPhone"
onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("TechPhone").Value)%>" size="22"
maxlength="20"></td>
<td class="maintext">Phone:</td>
<td><input name="PurchPhone" type="text" class="textfield2"
id="PurchPhone" onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("PurchPhone").Value)%>" size="22"
maxlength="20"></td>
</tr>
<tr>
<td nowrap class="maintext">EMail:</td>
<td><input name="TechEmail" type="text" class="textfield2" id="TechEmail"
onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("TechEMail").Value)%>" size="22"
maxlength="20"></td>
<td class="maintext">EMail:</td>
<td><input name="PurchEMail" type="text" class="textfield2"
id="PurchEMail" onChange="CheckComplete()"
value="<%=(Overview.Fields.Item("PurchEMail").Value)%>" size="22"
maxlength="20"></td>
</tr>
- 13
- using Flash in Dreamweaver & Z indexingIs it possible to have navigation dropdown menus appear over a Flash element
below or next to them? I have noticed that even if I send a Flash element 'to
the back', when I publish it the navigation dropdowns go behind it.
Additionally, if I were to develop Flash navigation, would I experience any
issues with them dropping down over another Flash element? What solution do you
suggest for utilizing a Flash design element near other elements that need to
appear in front of the Flash?
Help???
- 14
- Viewing in Remote BrowserWhen I attempt to view my ASP.NET page in a browser, I receive instead a File
Download screen. I am connected to a remote server via FTP and I have my Site
definition set to view the pages on the remote site. How can I get this page to
show in the browser?
Have I not set up this site definition correctly?
Steve
- 15
- How to build a Image Gallery?I am using Dreamweaver MX/ASP VBScript. I have to make a image gallery based on
Access Database records for a car dealer application. Need advice and
suggestion or any perticular site where I could find script to build a dynamic
gallery.
Any advice would be appriciated.
Regards
|
|
|