Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

IIS Issue With Dreamweaver CS3

Guest
Sep 22, 2008 Sep 22, 2008
I have an ASP site which tests ok in Internet Explorer on my local pc, which is running IIS. When I get an error during testing, I have to reboot the pc to view any pages again as IIS appears to be locked out in some way. Anyone give me a steer as to why this is or what I I can do to avoid this?

Steve
TOPICS
Server side applications
849
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 22, 2008 Sep 22, 2008
stevo.s wrote:
> I have an ASP site which tests ok in Internet Explorer on my local pc, which is
> running IIS. When I get an error during testing, I have to reboot the pc to
> view any pages again as IIS appears to be locked out in some way. Anyone give
> me a steer as to why this is or what I I can do to avoid this?

Its your code that is locking up IIS not Dreamweaver. Post the code and
we will see what is wrong.

You can avoid the reboots by just stopping and restarting IIS.

Dooza
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 22, 2008 Sep 22, 2008
Thanks for your help!

This is the error mesage in Explorer...

Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E10)
No value given for one or more required parameters.
/samson beta/Edit Claims.asp, line 37


Browser Type:
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)

Page:
POST 89 bytes to /samson beta/Edit Claims.asp

POST Data:
lstStaff=1&txtEngineersComments=&Submit=Submit&MM_update=frmUpdateClaim&MM_recordId=12344

Time:
Monday, September 22, 2008, 1:44:09 PM


More information:
Microsoft Support

This is the code:

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")) = "frmUpdateClaim") Then
If (Not MM_abortEdit) Then
' execute the update
Dim MM_editCmd

Set MM_editCmd = Server.CreateObject ("ADODB.Command")
MM_editCmd.ActiveConnection = MM_Samson_STRING
MM_editCmd.CommandText = "UPDATE CLAIMS SET PERSONNEL_ID = ?, [Engineers Comments] = ? WHERE [Claim Number] = ?"
MM_editCmd.Prepared = true
MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 5, 1, 50, MM_IIF(Request.Form("lstStaff"), Request.Form("lstStaff"), null)) ' adDouble
MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 1, 255, Request.Form("txtEngineersComments")) ' adVarWChar

(This is line 37) MM_editCmd.Execute
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 22, 2008 Sep 22, 2008
stevo.s wrote:
> Thanks for your help!
>
> This is the error mesage in Explorer...
>
> Error Type:
> Microsoft OLE DB Provider for ODBC Drivers (0x80040E10)
> No value given for one or more required parameters.
> /samson beta/Edit Claims.asp, line 37

This says your not passing all the required parameters to the statement.

> This is the code:
>
> 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")) = "frmUpdateClaim") Then
> If (Not MM_abortEdit) Then
> ' execute the update
> Dim MM_editCmd
>
> Set MM_editCmd = Server.CreateObject ("ADODB.Command")
> MM_editCmd.ActiveConnection = MM_Samson_STRING
> MM_editCmd.CommandText = "UPDATE CLAIMS SET PERSONNEL_ID = ?, [Engineers
> Comments] = ? WHERE [Claim Number] = ?"
> MM_editCmd.Prepared = true
> MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 5, 1,
> 50, MM_IIF(Request.Form("lstStaff"), Request.Form("lstStaff"), null)) ' adDouble
> MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 1,
> 255, Request.Form("txtEngineersComments")) ' adVarWChar
>
> (This is line 37) MM_editCmd.Execute

Your statement requires 3 parameters, you have only given it 2.

Dooza
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 22, 2008 Sep 22, 2008
Thanks for help...I can only see two parameters (param 1 and 2)...I used the update form wizard for the code so I am stumbling along trying to grasp the concept...could you show me where the other parameter is or should be?

Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 23, 2008 Sep 23, 2008
stevo.s wrote:
> Thanks for help...I can only see two parameters (param 1 and 2)...I used the
> update form wizard for the code so I am stumbling along trying to grasp the
> concept...could you show me where the other parameter is or should be?
>
> Steve

I would delete the update behaviour and try again, since it is the
wizard that you are using.

Dooza
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 24, 2008 Sep 24, 2008
Thanks again for your input. I did as you said and created a new, simple 2 item update page. I then got an error which stated that an updateable query was required. Through a process of elimination and scouring the web, I determined that I had to change the permissions on the database folder. This appears to have resolved the issue with IIS " hanging" and the data I enter on the update form is actually being changed in the database. Progress!

The only issue I have now is that the target page I specify as the page to go to after the update, does not appear. It looks like the parameter which is passed to the update page is being passed out again when the update is completed, which obviously means that the target page is not found...any ideas why that might be?


Cheers

Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 24, 2008 Sep 24, 2008
stevo.s wrote:
> Thanks again for your input. I did as you said and created a new, simple 2 item
> update page. I then got an error which stated that an updateable query was
> required. Through a process of elimination and scouring the web, I determined
> that I had to change the permissions on the database folder. This appears to
> have resolved the issue with IIS " hanging" and the data I enter on the update
> form is actually being changed in the database. Progress!

Well done, good bit of sleuthing there!

> The only issue I have now is that the target page I specify as the page to go
> to after the update, does not appear. It looks like the parameter which is
> passed to the update page is being passed out again when the update is
> completed, which obviously means that the target page is not found...any ideas
> why that might be?

Not a clue at the moment, sounds very odd. I will ponder it some more
and try to get back to you.

Dooza
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 24, 2008 Sep 24, 2008

"stevo.s" <webforumsuser@macromedia.com> wrote in message
news:gbd07k$22n$1@forums.macromedia.com...
>
> The only issue I have now is that the target page I specify as the page to
> go
> to after the update, does not appear. It looks like the parameter which is
> passed to the update page is being passed out again when the update is
> completed, which obviously means that the target page is not found...any
> ideas
> why that might be?
>

Steve, you're doing ASP, right? (coming in late to the thread)... IIRC, it
might be this bug that's been persistant for the past few versions of DW...
whenever I would use DW's update or delete routine (might've been others),
it would throw in code that would pass the parameter again back to the
"redirect" page when the update/delete would be finished which would cause
errors.

The code DW created was this:
--------
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And
Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
-----------

For me, the fix was to change it thusly (note my comment line):
------
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And
Request.QueryString <> "") Then
' the following line should not containt :: & "?" & Request.QueryString ::
for it to work right (using :: as quotes to surround the item)
MM_editRedirectUrl = MM_editRedirectUrl
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
------------

I am not saying that this is the same problem you had.... just that you
might look to see if your code is the same and if removing part of that one
line fixes it for you.



Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 24, 2008 Sep 24, 2008
Thanks for your input. I have been looking in the same area that you have highlighted and I do think the issue is in there! However if I take the line out which u have indicated the update behaviour disappears, also I still get the same error. I have also tried removing the redirect aspect of the update behaviour and the record is updated fine and the page refreshes ok. I'm pretty sure that whatever the issue is it is in the area you have pointed out.

Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 24, 2008 Sep 24, 2008

"stevo.s" <webforumsuser@macromedia.com> wrote in message
news:gbdmc9$s7h$1@forums.macromedia.com...
> Thanks for your input. I have been looking in the same area that you have
> highlighted and I do think the issue is in there! However if I take the
> line
> out which u have indicated the update behaviour disappears, also I still
> get
> the same error. I have also tried removing the redirect aspect of the
> update
> behaviour and the record is updated fine and the page refreshes ok. I'm
> pretty
> sure that whatever the issue is it is in the area you have pointed out.

I didn't "take out the line", I modified it if you re-look at it 🙂


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 24, 2008 Sep 24, 2008
Soz...I meant that I modified the line rather than take it out completely...
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 25, 2008 Sep 25, 2008
I have tried lots of different permutations, but the target page will not open although the record is updated...I am pretty sure some alteration to the function would resolve the issue or perhaps there is something else I could do elsewhere? I have scoured the code to see if there are any references to the redirect function but cannot see any.

I know I could just put another button on the page to redirect to the target page after update, but I would prefer to understand exactly why this will not work in order that I can come up with a design strategy for the other update pages I will need to create for the site.... Or should I consider scrapping the ASP scenario and consider another approach??? Are all the ASP server behaviours this clunky?

Any help would be much appreciated


Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 26, 2008 Sep 26, 2008
stevo.s wrote:
> I have tried lots of different permutations, but the target page will not open
> although the record is updated...I am pretty sure some alteration to the
> function would resolve the issue or perhaps there is something else I could do
> elsewhere? I have scoured the code to see if there are any references to the
> redirect function but cannot see any.
>
> I know I could just put another button on the page to redirect to the target
> page after update, but I would prefer to understand exactly why this will not
> work in order that I can come up with a design strategy for the other update
> pages I will need to create for the site.... Or should I consider scrapping the
> ASP scenario and consider another approach??? Are all the ASP server behaviours
> this clunky?
>
> Any help would be much appreciated

It *should* work, and normally does, the server behaviours are fairly
basic but fairly robust. Could you post all the ASP here for us to inspect?

Dooza
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 29, 2008 Sep 29, 2008
Soz for delay..have been out of office...here is the full code:

<%@LANGUAGE="VBSCRIPT"%>
<!--#include virtual="/samson beta/Connections/Samson.asp" -->
<%
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_Samson_STRING
MM_editCmd.CommandText = "UPDATE CLAIMS SET Comments = ? WHERE [Claim Number] = ?"
MM_editCmd.Prepared = true
MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 1, 255, Request.Form("Comments")) ' adVarWChar
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 = "/Inetpub/wwwroot/Samson Beta/Main.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
%>
<%
Dim rsClaimUpdate__MMColParam
rsClaimUpdate__MMColParam = "1"
If (Request.QueryString("Claim Number") <> "") Then
rsClaimUpdate__MMColParam = Request.QueryString("Claim Number")
End If
%>
<%
Dim rsClaimUpdate
Dim rsClaimUpdate_cmd
Dim rsClaimUpdate_numRows

Set rsClaimUpdate_cmd = Server.CreateObject ("ADODB.Command")
rsClaimUpdate_cmd.ActiveConnection = MM_Samson_STRING
rsClaimUpdate_cmd.CommandText = "SELECT * FROM CLAIMS WHERE [Claim Number] = ?"
rsClaimUpdate_cmd.Prepared = true
rsClaimUpdate_cmd.Parameters.Append rsClaimUpdate_cmd.CreateParameter("param1", 5, 1, -1, rsClaimUpdate__MMColParam) ' adDouble

Set rsClaimUpdate = rsClaimUpdate_cmd.Execute
rsClaimUpdate_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = 10
Repeat1__index = 0
rsSitedAssets_numRows = rsSitedAssets_numRows + Repeat1__numRows
%>
<%

%>
<!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">
<title>Service Calls</title>
<link rel="stylesheet" href="2col_leftNav.css" type="text/css">
<style type="text/css">
<!--
.style1 {
font-family: "Courier New", Courier, mono;
font-size: x-large;
}
.style15 {font-weight: bold}
.style17 {
font-weight: bold;
background-color: #F9F9F7;
}
body {
background-color: #FFFFFF;
}
.style22 {color: #000000; font-weight: bold; font-family: Tahoma; }
.style28 {color: #000000; font-family: Tahoma; }
.style30 {color: #FFFFFF; font-weight: bold; font-family: Tahoma; font-style: italic; }
body,td,th {
font-family: Tahoma;
color: #000000;
}
.style33 {color: #000000}
-->
</style>
<div align="left"></div>
</head>
<!-- The structure of this file is exactly the same as 2col_rightNav.html;
the only difference between the two is the stylesheet they use -->
<body>
<div class="style15" id="masthead">
<div class="style33" id="globalNav">
<div align="center">


<p><span class="style1"><img src="Game%20On%204.gif" width="710" height="88"></span></p>
</div>
</div>
</div>
<div align="center"></div>


<table width="752" border="0" align="center">
<tr>
<th width="41" scope="col"><a href="Site%20Faults.asp"><img src="Images/cooltext90622309.png"width="144" height="54" border="0" onMouseOver="this.src='Images/cooltext90622309MouseOver.png'" onMouseOut="this.src='Images/cooltext90622309.png'"></a></th>
<th width="220" scope="col"><a href="Site%20Claims.asp"><img src="Images/cooltext90622213.png"width="144" height="54" border="0" onmouseover="this.src='Images/cooltext90622213MouseOver.png'" onmouseout="this.src='Images/cooltext90622213.png'"></a></th>
<th width="96" scope="col"><a href="Site%20Collections.asp"><img src="Images/cooltext90623725.png"width="144" height="54" border="0" onMouseOver="this.src='Images/cooltext90623725MouseOver.png'" onMouseOut="this.src='Images/cooltext90623725.png'"></a></th>
<th width="138" scope="col"><a href="Site%20Movements.asp"><img src="Images/cooltext90622434.png"width="144" height="54" border="0" onmouseover="this.src='Images/cooltext90622434MouseOver.png'" onmouseout="this.src='Images/cooltext90622434.png'"></a></th>
<th width="138" scope="col"><a href="Site%20Diary.asp"><img src="Images/cooltext90622597.png"width="144" height="54" border="0" onmouseover="this.src='Images/cooltext90622597MouseOver.png'" onmouseout="this.src='Images/cooltext90622597.png'"></a></th>
<th width="93" scope="col"><a href="Log%20In.asp"><img src="Images/cooltext90621857.png"width="144" height="54" border="0" onmouseover="this.src='Images/cooltext90621857MouseOver.png'" onmouseout="this.src='Images/cooltext90621857.png'"></a></th>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<div align="center"></div>
<p align="center"> </p>
<p align="center"> </p>
<div>
<h3 align="center">Welcome Username, </h3>
<p align="center">  </p>

<form method="POST" action="<%=MM_editAction%>" name="form1">
<table align="center">
<tr valign="baseline">
<td nowrap align="right">Claim Number:</td>
<td><input type="text" name="Claim_Number" value="<%=(rsClaimUpdate.Fields.Item("Claim Number").Value)%>" size="32">
</td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Comments:</td>
<td><input type="text" name="Comments" value="<%=(rsClaimUpdate.Fields.Item("Comments").Value)%>" size="32">
</td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input type="submit" value="Update record">
</td>
</tr>
</table>
<input type="hidden" name="MM_update" value="form1">
<input type="hidden" name="MM_recordId" value="<%= rsClaimUpdate.Fields.Item("Claim Number").Value %>">
</form>
<p> </p>
<p align="center"> </p>
</div>
<div>
<h3 align="center"> </h3>
</div>
<div></div>
</div>
<div align="left"><strong>
<!--end content -->

</strong>
</div>
<div class="style17" id="siteInfo">
<div align="center">&copy;2005
Game On! Services </div>
</div>

</body>
</html>
<%
rsClaimUpdate.Close()
Set rsClaimUpdate = Nothing
%>
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 29, 2008 Sep 29, 2008

"stevo.s" <webforumsuser@macromedia.com> wrote in message
news:gbqlu5$age$1@forums.macromedia.com...
> Soz for delay..have been out of office...here is the full code:
[snip]
> ' append the query string to the redirect URL
> Dim MM_editRedirectUrl
> MM_editRedirectUrl = "/Inetpub/wwwroot/Samson Beta/Main.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
> %>

you didn't change that code I was telling you about. try this instead of the
above:

' append the query string to the redirect URL
Dim MM_editRedirectUrl
MM_editRedirectUrl = "/Inetpub/wwwroot/Samson Beta/Main.asp"
If (Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0) Then
MM_editRedirectUrl = MM_editRedirectUrl
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
Response.Redirect(MM_editRedirectUrl)
End If
End If
%>








Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Sep 29, 2008 Sep 29, 2008
I have done as you suggested and the update record server behaviour has disappeared and the the target page does not open..." file not found. This is what happened when I tried to alter the code as you previously suggested...any other suggestions???

Tx for your help
steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Oct 02, 2008 Oct 02, 2008
I would appreciate any help from anyone in resolving my issue with the update server behaviour. I am toattlly baffled as I just can't see why it will not work properly. I'm desperate!..Well I'm actually just really really curious as I don't want to start looking for a workaround as it seems to defeat the purpose of learning how DW behaviours work...

Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 03, 2008 Oct 03, 2008
stevo.s wrote:
> I would appreciate any help from anyone in resolving my issue with the update
> server behaviour. I am toattlly baffled as I just can't see why it will not
> work properly. I'm desperate!..Well I'm actually just really really curious as
> I don't want to start looking for a workaround as it seems to defeat the
> purpose of learning how DW behaviours work...

I think I have worked it out :)

You have /Inetpub/wwwroot/Samson Beta/Main.asp as your redirect URL,
this is wrong, thats the physical path, not the URL, your URL would be
/Samson Beta/Main.asp or even just /Main.asp depending on how your site
is configured.

Dooza

--
Posting Guidelines
http://www.adobe.com/support/forums/guidelines.html
How To Ask Smart Questions
http://www.catb.org/esr/faqs/smart-questions.html
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Oct 03, 2008 Oct 03, 2008
Eureka!...Worked first time!...Tx for your perseverance, I had reached a point where i couldnt move on with any other part of my project as I knew it was pointless as unless I can update records in the various other areas where it is neccessary, the whole thing would have been a waste of time.

Now I can update, I can move on to validating the forms and populating list boxes etc with any repeating data.

Thanks again

Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 03, 2008 Oct 03, 2008
LATEST
stevo.s wrote:
> Eureka!...Worked first time!...Tx for your perseverance, I had reached a point
> where i couldnt move on with any other part of my project as I knew it was
> pointless as unless I can update records in the various other areas where it is
> neccessary, the whole thing would have been a waste of time.
>
> Now I can update, I can move on to validating the forms and populating list
> boxes etc with any repeating data.
>
> Thanks again

Fantastic, I am glad its working :)

Dooza

--
Posting Guidelines
http://www.adobe.com/support/forums/guidelines.html
How To Ask Smart Questions
http://www.catb.org/esr/faqs/smart-questions.html
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines