ASP Crashes DW CS3

I completed about 20 pages of a web site in DW CS3 in xhtml.
Once done I sent them to the corp developer who dropped the content
into an ASP framework for the header and left hand NAV and resaved
the page with a .ASP suffix. Worked great except that now I have to
go back in a make some edits to the content. I downloaded his
documents back to my root directory. I can open the .asp pages but
DW is initially very slow and within a few minutes stops responding
all together. I have tried going into the CODE view and deleting
the ASP code but the page is still buggy. I open the original files
and DW works fine.
Is there something I can do or does CS4 handle this better? I
am working on MacPro, 10.5.5 and 4 GB of RAM. The developer is
working in DW CS3 on a PC and has no issues.
Thanks

EntropySJ wrote:
> I am having a similar issue as well. For me I have found
that embedded vbscript within a option input tag is causing it.
Maybe there's an issue with embedding code into input tags.
I have been working on ASP for years, my testing server is
either my
online server or another in house server, I barely ever use a
local one.
There are known issues with using ASP Command Server
Behaviours that
cause Dreamweaver to crash, the resolution is to use
Recordsets instead.
If you are having problems with ASP and form fields crashing
Dreamweaver
then you are suffering from the Daylight Time Savings bug
that corrupts
the cache file. Its been mentioned loads on this forum, just
do a search
and your solution will become present.
If that doesn't fix it, save your asp page as a .txt, upload
it and post
a link to it so that we can look at it.
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

Similar Messages

  • XSL Transformation crashes DW CS3

    Whenever I select XSL Transformation from any of the menus,
    it crashes DW CS3 asking the typical, "do you want to tell
    microsoft about this error."
    Anyone have this problem with using XSL Transformations? I'm
    thinking about reinstalling DW to see if it fixes the problem.
    Thanks

    Forgot to mention that this is a Windows XP SP2 machine.

  • Clicking on Edit- Preferences crashes Bridge CS3 - V2.1.1.9

    Clicking on Edit->Preferences crashes Bridge CS3 - V2.1.1.9
    I've tried repairing the installation with PS setup, renaming the preferences file, changing startup folder, clearing cache, and 1 or 2 other things I can't remember.
    Once I click on Edit->Preferences Bridge stops working; I never see the preferences dialog window.
    I have no idea what the cause is, one moment it was working, the next it wasn't. I hadn't changed any preferences for a while, so the change causing the problem could have been awhile ago.
    Thanks!

    Sergei - I just tried opening Bridge by holding down the Ctrl key while double clicking on the QuickLaunch Icon for Bridge. Works just fine, I get the reset window instantly. Bridge does not appear at all. I have to choose Cancel on reset window for Bridge to load. Using Ctrl+Shift+Alt works exactly the same, but takes more finger dexterity. This 3 key sequence was standard with CS2 I understand.
    Clicking on Bridge in the Recently Accessed Programs List while holding down Ctrl key also works as described above.
    Since you experience something different, it just re-enforces the concept that Bridge acts differently depending on how it is installed, and what is installed on a person's computer.
    FYI - the CS3 I have on my computer has never had any other version of PhotoShop on it, so there is no chance of accessing fragments of previous versions. From posts I have seen upgraded versions can cause different responses to the same procedures if all traces of the old program are not overwritten with the new install.

  • Trace() crashes Flash CS3

    Hi!
    I have a nested for-next loop running in Flash AS3. The loop
    is functioning correctly.
    But, when I add any trace() inside the loop to track
    variables, it crashes Flash CS3 (shuts down).
    Has anyone else experienced this?
    I am on Macintosh OSX. Flash seems to be crash-happy. I am
    still in my 30-day trial period, and not even sure I'll buy it.
    Seems to be quite buggy.
    TIA

    By the way heres is the Vista Error Log:
    Produkt
    Adobe Flash CS3
    Problemsignatur
    Problemhendelsesnavn: APPCRASH
    Programnavn: Flash.exe
    Programversjon: 9.0.0.494
    Tidsstempel for program: 46015140
    Navn på feilmodul: AILib.dll
    Feilmodulversjon: 13.0.128.0
    Tidsstempel for feilmodul: 45c17494
    Unntakskode: c0000005
    Unntaksforskyvning: 0005bda0
    OS-versjon: 6.0.6000.2.0.0.256.1
    ID for nasjonal innstilling: 1044
    Tilleggsinformasjon 1: b179
    Tilleggsinformasjon 2: 3002bfb3a6ea85a667dd3f5c05c040c5
    Tilleggsinformasjon 3: dde9
    Tilleggsinformasjon 4: c7a68b49da8650225411c072c3e54c24

  • Page Numbering w/ASP and Dreamweaver CS3

    I am new to this so please bear with me if this question has been asked a million times. I have a single search parameter searching for a "Department", the result displays on the next page (The Results page). This works fine. I am using DW CS3 and I am now finding out that when I use it with ASP it only allows the Previous, Next, First, Last, Specific records to be displayed.
    I really want it to display the total amount of pages by numbers Example: (1-10, 11-21, etc...). Can someone please help me? I have searched the web and came across this site http://www.dmxzone.com/go?12449. I am not following where to put the code he suggest. Can someone please help me?
    Thanks for any help in advance.
    Here is the asp code I have for my Results page:
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/BishopsLogin.asp" -->
    <%
    Dim rs_Results__MMColParam
    rs_Results__MMColParam = "1"
    If (Request.QueryString("Department") <> "") Then
      rs_Results__MMColParam = Request.QueryString("Department")
    End If
    %>
    <%
    Dim rs_Results
    Dim rs_Results_cmd
    Dim rs_Results_numRows
    Set rs_Results_cmd = Server.CreateObject ("ADODB.Command")
    rs_Results_cmd.ActiveConnection = MM_BishopsLogin_STRING
    rs_Results_cmd.CommandText = "SELECT Department, SubpageTitle, LinkDescription, URL, DateLastModified FROM dbo.Episcopal_Data_Files WHERE Department = ?"
    rs_Results_cmd.Prepared = true
    rs_Results_cmd.Parameters.Append rs_Results_cmd.CreateParameter("param1", 200, 1, 30, rs_Results__MMColParam) ' adVarChar
    Set rs_Results = rs_Results_cmd.Execute
    rs_Results_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = 5
    Repeat1__index = 0
    rs_Results_numRows = rs_Results_numRows + Repeat1__numRows
    %>
    <%
    '  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables
    Dim rs_Results_total
    Dim rs_Results_first
    Dim rs_Results_last
    ' set the record count
    rs_Results_total = rs_Results.RecordCount
    ' set the number of rows displayed on this page
    If (rs_Results_numRows < 0) Then
      rs_Results_numRows = rs_Results_total
    Elseif (rs_Results_numRows = 0) Then
      rs_Results_numRows = 1
    End If
    ' set the first and last displayed record
    rs_Results_first = 1
    rs_Results_last  = rs_Results_first + rs_Results_numRows - 1
    ' if we have the correct record count, check the other stats
    If (rs_Results_total <> -1) Then
      If (rs_Results_first > rs_Results_total) Then
        rs_Results_first = rs_Results_total
      End If
      If (rs_Results_last > rs_Results_total) Then
        rs_Results_last = rs_Results_total
      End If
      If (rs_Results_numRows > rs_Results_total) Then
        rs_Results_numRows = rs_Results_total
      End If
    End If
    %>
    <%
    Dim MM_paramName
    %>
    <%
    ' *** Move To Record and Go To Record: declare variables
    Dim MM_rs
    Dim MM_rsCount
    Dim MM_size
    Dim MM_uniqueCol
    Dim MM_offset
    Dim MM_atTotal
    Dim MM_paramIsDefined
    Dim MM_param
    Dim MM_index
    Set MM_rs    = rs_Results
    MM_rsCount   = rs_Results_total
    MM_size      = rs_Results_numRows
    MM_uniqueCol = ""
    MM_paramName = ""
    MM_offset = 0
    MM_atTotal = false
    MM_paramIsDefined = false
    If (MM_paramName <> "") Then
      MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
    End If
    %>
    <%
    ' *** Move To Record: handle 'index' or 'offset' parameter
    if (Not MM_paramIsDefined And MM_rsCount <> 0) then
      ' use index parameter if defined, otherwise use offset parameter
      MM_param = Request.QueryString("index")
      If (MM_param = "") Then
        MM_param = Request.QueryString("offset")
      End If
      If (MM_param <> "") Then
        MM_offset = Int(MM_param)
      End If
      ' if we have a record count, check if we are past the end of the recordset
      If (MM_rsCount <> -1) Then
        If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
          If ((MM_rsCount Mod MM_size) > 0) Then         ' last page not a full repeat region
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      If (MM_rs.EOF) Then
        MM_offset = MM_index  ' set MM_offset to the last possible record
      End If
    End If
    %>
    <%
    ' *** Move To Record: if we dont know the record count, check the display range
    If (MM_rsCount = -1) Then
      ' walk to the end of the display range for this page
      MM_index = MM_offset
      While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      ' if we walked off the end of the recordset, set MM_rsCount and MM_size
      If (MM_rs.EOF) Then
        MM_rsCount = MM_index
        If (MM_size < 0 Or MM_size > MM_rsCount) Then
          MM_size = MM_rsCount
        End If
      End If
      ' if we walked off the end, set the offset based on page size
      If (MM_rs.EOF And Not MM_paramIsDefined) Then
        If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
          If ((MM_rsCount Mod MM_size) > 0) Then
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' reset the cursor to the beginning
      If (MM_rs.CursorType > 0) Then
        MM_rs.MoveFirst
      Else
        MM_rs.Requery
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While (Not MM_rs.EOF And MM_index < MM_offset)
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
    End If
    %>
    <%
    ' *** Move To Record: update recordset stats
    ' set the first and last displayed record
    rs_Results_first = MM_offset + 1
    rs_Results_last  = MM_offset + MM_size
    If (MM_rsCount <> -1) Then
      If (rs_Results_first > MM_rsCount) Then
        rs_Results_first = MM_rsCount
      End If
      If (rs_Results_last > MM_rsCount) Then
        rs_Results_last = MM_rsCount
      End If
    End If
    ' set the boolean used by hide region to check if we are on the last record
    MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
    %>
    <%
    ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
    Dim MM_keepNone
    Dim MM_keepURL
    Dim MM_keepForm
    Dim MM_keepBoth
    Dim MM_removeList
    Dim MM_item
    Dim MM_nextItem
    ' create the list of parameters which should not be maintained
    MM_removeList = "&index="
    If (MM_paramName <> "") Then
      MM_removeList = MM_removeList & "&" & MM_paramName & "="
    End If
    MM_keepURL=""
    MM_keepForm=""
    MM_keepBoth=""
    MM_keepNone=""
    ' add the URL parameters to the MM_keepURL string
    For Each MM_item In Request.QueryString
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
      End If
    Next
    ' add the Form variables to the MM_keepForm string
    For Each MM_item In Request.Form
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
      End If
    Next
    ' create the Form + URL string and remove the intial '&' from each of the strings
    MM_keepBoth = MM_keepURL & MM_keepForm
    If (MM_keepBoth <> "") Then
      MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
    End If
    If (MM_keepURL <> "")  Then
      MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
    End If
    If (MM_keepForm <> "") Then
      MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
    End If
    ' a utility function used for adding additional parameters to these strings
    Function MM_joinChar(firstItem)
      If (firstItem <> "") Then
        MM_joinChar = "&"
      Else
        MM_joinChar = ""
      End If
    End Function
    %>
    <%
    ' *** Move To Record: set the strings for the first, last, next, and previous links
    Dim MM_keepMove
    Dim MM_moveParam
    Dim MM_moveFirst
    Dim MM_moveLast
    Dim MM_moveNext
    Dim MM_movePrev
    Dim MM_urlStr
    Dim MM_paramList
    Dim MM_paramIndex
    Dim MM_nextParam
    MM_keepMove = MM_keepBoth
    MM_moveParam = "index"
    ' if the page has a repeated region, remove 'offset' from the maintained parameters
    If (MM_size > 1) Then
      MM_moveParam = "offset"
      If (MM_keepMove <> "") Then
        MM_paramList = Split(MM_keepMove, "&")
        MM_keepMove = ""
        For MM_paramIndex = 0 To UBound(MM_paramList)
          MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
          If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
            MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
          End If
        Next
        If (MM_keepMove <> "") Then
          MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
        End If
      End If
    End If
    ' set the strings for the move to links
    If (MM_keepMove <> "") Then
      MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&"
    End If
    MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="
    MM_moveFirst = MM_urlStr & "0"
    MM_moveLast  = MM_urlStr & "-1"
    MM_moveNext  = MM_urlStr & CStr(MM_offset + MM_size)
    If (MM_offset - MM_size < 0) Then
      MM_movePrev = MM_urlStr & "0"
    Else
      MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
    End If
    %>
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    function MM_jumpMenu(targ,selObj,restore){ //v3.0
      eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0;
    //-->
    </script><script language="JavaScript" src="mm_menu.js"></script>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    </head>
    <body onLoad="MM_preloadImages('images/nav_about_on.gif','images/nav_departments_on.gif','image s/nav_calendar_on.gif','images/nav_links_on.gif','images/nav_contact_on.gif','images/nav_h ome_on.gif','images/nav_forms_on.gif')">
    <script language="JavaScript1.2">mmLoadMenus();</script>
    <div align="center">
      <table width="760" border="0" cellspacing="0" cellpadding="0">
    <tr bgcolor="#ffffff" valign="top">
    <td><a href="index.html"><img src="images/logobar_left.gif" alt="GCFA: Serving the Church through the ministry of administration" width="186" height="103" border="0" /></a><img src="images/blurb.gif" alt="General Council on Finance and Administration. The United Methodist Church" /></td>
    </tr>
    </table>
    <table width="760" border="0" cellspacing="0" cellpadding="0" height="20">
    <form method="get" action="http://google.umc.org/search" name="xxx">
    <tr height="20" style="vertical-align: middle;">
    <td  bgcolor="#000000" width="580"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('about','','images/nav_about_on.gif',1)"><img src="images/nav_about.gif" alt="About Us" name="about" width="70" height="20" border="0" id="about" onMouseOver="MM_showMenu(window.mm_menu_0523125900_0,0,20,null,'about')" onMouseOut="MM_startTimeout();" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('departments','','images/nav_departments_on.gif',1)"><img src="images/nav_departments.gif" alt="Departments &amp; Services" name="departments" width="146" height="20" border="0" id="departments" onMouseOver="MM_showMenu(window.mm_menu_0516155917_0,0,20,null,'departments')" onMouseOut="MM_startTimeout();" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('forms','','images/nav_forms_on.gif',1)"><img src="images/nav_forms.gif" alt="Forms/Reports" name="forms" width="105" height="20" border="0" id="forms" onMouseOver="MM_showMenu(window.mm_menu_0523125955_0,0,20,null,'forms')" onMouseOut="MM_startTimeout();" /></a><a href="calendar.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('calendar','','images/nav_calendar_on.gif',1)"><img src="images/nav_calendar.gif" alt="UM Calendar" name="calendar" width="89" height="20" border="0" id="calendar" /></a><a href="links.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('links','','images/nav_links_on.gif',1)"><img src="images/nav_links.gif" alt="Helpful Links" name="links" width="39" height="20" border="0" id="links" /></a><a href="contactus.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('contact','','images/nav_contact_on.gif',1)"><img src="images/nav_contact.gif" alt="Contact Us" name="contact" width="78" height="20" border="0" id="contact" /></a><a href="index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('home','','images/nav_home_on.gif',1)"><img src="images/nav_home.gif" alt="Home" name="home" width="38" height="20" border="0" id="home" /></a></td>
    <td bgcolor="#990000" width="51" align="center" style="font: 11px arial, helvetica, sans-serif; color: #ffffff;"><img src="images/btn_search.gif" alt="Search" width="51" height="20" /></td>
    <td bgcolor="#990000"><input name="q" type="text" size="15" style="font: 10px arial, helvetica, sans-serif;"/></span></td>
    <td width="33" bgcolor="#990000"><input type="image" name="submit" src="images/btn_go.gif" alt="GO!" width="31" height="20" /></td>
    </tr>
          <input type="hidden" name="sort" value="date:D:L:d1">
          <input type="hidden" name="output" value="xml_no_dtd">
          <input type="hidden" name="ie" value="UTF-8">
          <input type="hidden" name="oe" value="UTF-8">
          <input type="hidden" name="client" value="GCFA_GCFAorg_Frontend">
          <input type="hidden" name="proxystylesheet" value="GCFA_GCFAorg_Frontend">
          <input type="hidden" name="site" value="GCFA_GCFAorg_Collection">
        </form>
    </table>
    <table width="760" border="0" cellspacing="0" cellpadding="0">
    <tr valign="top">
    <td height="353" style="background-color: #dddddd; width: 150px;">
    <table width="150" border="0" cellspacing="0" cellpadding="0">
       <tr style="background-color: #990000;" height="25">
            <td style="font: bold 11px arial, helvetica, sans-serif; color: #ffffff; text-align: center;">Department Resources</td>
         </tr>
       <tr>
            <td><div style="font: 11px arial, helvetica, sans-serif; color: #000000; text-align: left; margin-left: 10px; margin-right: 10px; margin-bottom: 5px; margin-top: 5px;">
                <p>PDF documents require using the<span class="style5"><a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank"> latest version</a> </span>of the freely available Adobe Reader for proper viewing. Click on
                the <span class="style5"><a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank">Get Adobe Reader</a></span> link below for
                download and installation instructions. <br />
                <br />
                <a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank"><img src="images/get_adobe_reader.gif" alt="Get Adobe Reader" width="112" height="33" border="0" /></a></span><br>
       <a href="images/get_adobe_reader.gif" target="_blank"></a><br />
       </p>
            </div></td>
         </tr>
    <tr style="background-color: #3C5D15;" height="25">
    <td bgcolor="#DDDDDD" style="font: bold 12px arial, helvetica, sans-serif; color: #ffffff; text-align: center;"> </td>
    </tr>
    <tr>
    <td>
    <div style="font: 11px arial, helvetica, sans-serif; color: #000000; text-align: left; margin-left: 10px; margin-right: 10px; margin-bottom: 5px; margin-top: 5px;">
    <p><br />
    <br />
    <br />
    </p>
    </div> </td>
    </tr>
    </table>
        <p> </p></td>
    <td style="background-color: #000000; width: 2px;"><img src="images/pixel_black.gif" width="2" height="10" /></td>
    <td bordercolor="#FFFFFF" bgcolor="#FFFFFF" style="background-color: #ffffff; width: 610px;">
      <div style="margin-left: 20px; margin-right: 20px; margin-bottom: 20px; margin-top: 5px;">
        <table width="100%" border="0" cellspacing="2" cellpadding="2">
          <tr>
            <td height="285" align="left" valign="top"><p><font face="Arial" color="#990000"><span style="font-size: 16px; font-weight: 700">Episcopal Services Data Files</span></font></p>
              <p><font face="Arial" color="#990000"><span style="font-size: 16px; font-weight: 700"><br />
                </span></font>
                </p>
                <br />
                <%
    While ((Repeat1__numRows <> 0) AND (NOT rs_Results.EOF))
    %>
                  <table border="0" cellpadding="1" cellspacing="1">
                      <tr>
                          <td width="132" height="27" bgcolor="#DDDDDD"><div align="center"><strong>Department</strong></div></td>
                        <td width="371" bgcolor="#DDDDDD"><%=(rs_Results.Fields.Item("Department").Value)%></td>
                      </tr>
                      <tr>
                          <td height="22"><div align="center"><strong>Subpage Title</strong></div></td>
                        <td><%=(rs_Results.Fields.Item("SubpageTitle").Value)%></td>
                      </tr>
                      <tr>
                          <td height="26" bgcolor="#DDDDDD"><div align="center"><strong>Link Description</strong></div></td>
                        <td bgcolor="#DDDDDD"><%=(rs_Results.Fields.Item("LinkDescription").Value)%></td>
                      </tr>
                      <tr>
                          <td height="25"><div align="center"><strong>Date Last Modified</strong></div></td>
                        <td><%=(rs_Results.Fields.Item("DateLastModified").Value)%></td>
                      </tr>
                      <tr>
                          <td height="26" bgcolor="#DDDDDD"><div align="center"><strong>URL</strong></div></td>
                        <td bgcolor="#DDDDDD"><%=(rs_Results.Fields.Item("URL").Value)%></td>
                      </tr>
                              </table>
                  <br />
                  <%
      Repeat1__index=Repeat1__index+1
      Repeat1__numRows=Repeat1__numRows-1
      rs_Results.MoveNext()
    Wend
    %>
    <%
    rs_Results.Close()
    Set rs_Results = Nothing
    %>

    Please ignore my first post, it isn't right.
    I am new at this, although I did figure out the tutorial it still isn't what I am wanting. I am going to send an example page of want I my page to look like when I said page numbering  (I don't want first,prev,next, or last). I want numbers like the results you will get from this page. http://www.gcfa.org/Department_Resources.aspx Can I do this with ASP?
    If so so can someone please show me how? Thanks in advance. Maybe I have the right question this time.

  • Photoshop CS4 extended 64bit crash opening CS3 files

    Everytime i open a CS3 psd file in Photoshop CS4 extended 64bit the application crash after few minutes or seconds... this is very very very frustrating...

    In PHOTOSHOP CS4 extended 64bit i think the problem is opening CS3 files containing text layer ...
    I have done tests with
    - a file with only background > apparently OK
    - a file with a simply text layer > CRASH
    - a file with a simply text layer and masked image > CRASH
    - a file with masked image > apparently OK
    all file are 640x480 72dpi RGB
    The 32bit version don't crash but is to slow than CS3
    Firma problema:
    Nome evento problema: APPCRASH
    Nome applicazione: Photoshop.exe
    Versione applicazione: 11.0.0.0
    Timestamp applicazione: 48d38aa7
    Nome modulo con errori: StackHash_b20b
    Versione modulo con errori: 6.0.6001.18000
    Timestamp modulo con errori: 4791adec
    Codice eccezione: c0000374
    Offset eccezione: 00000000000a6e97
    Versione SO: 6.0.6001.2.1.0.256.6
    ID impostazioni locali: 1040
    Informazioni aggiuntive 1: b20b
    Ulteriori informazioni 2: 7365e82934fd5d6ca6a7f6098012906a
    Ulteriori informazioni 3: 1d0a
    Ulteriori informazioni 4: d1fb5c54064c36d5f54ecfc07bcfe17d

  • Crash PPro CS3 when launching AME

    PProCS3 crashes with "Sorry, serious problem" box, when trying to export sequence through Adobe Media Encoder. Same happended with CS4, so we decided to downgrade back to CS3.
    We've uninstalled/cleanuped everything Adobe related and done fresh install of PPro CS3 on following workstation:
    Intel Core i7 920, 6Gb RAM,
    WinXPPro x64, SP2, DX9,
    nVidia Quadro FX1800, 768Mb RAM, dr.v. 6.14.11.8267,
    Latest K-Lite and QT drivers.
    sherlock.exe shows "known false positives" - H.264/AVC, MPEG. (are they really so false?)
    dxDiag.exe passed perfectly, however Windows Error Reporting displays a number of identical entries:
    "AppErr adobe_media_encoder.exe <ver>, faulting module winmediaopwriter.vwr <ver>, fault address 0x0002934d;&#x000d;&#x000a;"
    another computer (Intel P4, 512Mb RAM), runs PProCS3 and exports all and everything (except Encore). I even  copied all those .ax and .dll files to i7's PPro with no change in its crashing.
    reinstalled suite and QT already several times in different combos - no progress.
    tired and no idea what to do next.
    please, can anyone suggest any solution?.
    P.S. Crash also happens, when in AfterEffects trying to set output format to MPEG/H.264

    Cannot describe my feelings, but yes I did uninstall KLite with no change - crashed like before.
    And then I recalled someone in forums sugesting to disable modules on crashy startup sequence (we have experienced this with CS4)..
    on last resort I decided to disable that winMediOPWriter.vwr and couldnt believe myself when AME window dialog appeared.. I expected to PPro crash on encoding, but NO - IT WORKS WORKS WORKS!! (at least DV-AVI, MPEG1 and MPEG2).
    Similar solution ALSO worked for After Effects, still I don't know what those modules are intended to do. Could anyone tell?
    Tomorrow I'll check other formats and compatibility with other CS3 modules, like Encore.. or even K-Lite pack.
    Thank you all for your will to help and I hope my experience will save someones hours, days, weeks and nerves..

  • Fit Content To Frame Crashes InDesign CS3 !

    Hi
    iam try to fit the content to it's frame
    if(Utils<Facade::IFrameContentFacade>()->CanFitContentToFrame(UIDList(newPageItemRef)))
    ErrorCode err=Utils<Facade::IFrameContentFacade>()->FitContentToFrame((UIDList(newPageItemRef)));
    But whenever I execute this methos InDesign CS3 crashes..
    Wht could be the reason??
    thanks,
    nataraj

    You probably need to pass the content item and not the frame.
    Use IHierarchy to navigate to the first child item of
    newPageItemRef and pass that to FitContentToFrame instead.

  • Spry Crashing DW CS3

    I am using DWCS3 and just started getting the following error
    when opening files:
    A script in file c:\[filepath]\Adobe Dreamweaver
    CS3\configuration\shared\spry\designTime\EditingUtils.js has been
    running for a long time. Do you want to continue?
    Before this warning is posted, DW stops responding and acts
    like it is about to crash. If I select 'Yes' the program stops
    responding again until the notice reappears. If I select 'No' the
    file I have opened does open but then other problems persist.
    I need help ASAP. Thank you so much!
    -Scott
    Any help is greatly appreciated!

    Several users have complained that Dreamweaver CS3 hangs when
    opening specific files that contain a Spry TabbedPanels or
    CollapsiblePanel widget, and that it eventually shows a dialog that
    says:
    A script in file c:\[filepath]\Adobe Dreamweaver
    CS3\configuration\shared\spry\designTime\EditingUtils.js has been
    running for a long time. Do you want to continue?
    This problem happens if you manually modify the widget
    constructor's options so that they make use of non constant
    parameters.
    This is an example of a widget constructor that works fine:
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: 0});
    -->
    </script>
    and here's an example of one that was manually modified to
    make use of a JS variable:
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab:
    (params.panel ? params.panel : 0)});
    -->
    </script>
    Modifying the widget constructor's options to use server-side
    markup will also cause the same problem:
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab:
    <%=foo%>});
    -->
    </script>
    Below are the instructions for manually applying the 2
    one-liner patches necessary to fix the problem. Please note that
    before applying any of these patches to the files mentioned, you
    should make a backup of the files so you can restore them if
    necessary.
    Before you begin, make sure Dreamweaver is not running and
    that you know where your Dreamweaver installed configuration folder
    is located on your drive:
    ==================================
    = Default location on WINDOWS:
    ==================================
    C:\Program Files\Adobe\Adobe Dreamweaver CS3\Configuration
    ==================================
    = Default location on MAC:
    ==================================
    Applications/Adobe Dreamweaver CS3/Configuration
    ==================================
    = Step 1:
    ==================================
    Make a backup of the following files which you will be
    editing:
    <INSTALLED CONFIG
    DIR>\Shared\Spry\Widgets\TabbedPanels\DesignTime\SpryTabbedPanelsDesignTime.js
    <INSTALLED CONFIG
    DIR>\Shared\Spry\Widgets\CollapsiblePanel\DesignTime\SpryCollapsiblePanelDesignTime.js
    You can name the backup copies something like:
    <INSTALLED CONFIG
    DIR>\Shared\Spry\Widgets\TabbedPanels\DesignTime\SpryTabbedPanelsDesignTime.js.BACKUP
    <INSTALLED CONFIG
    DIR>\Shared\Spry\Widgets\CollapsiblePanel\DesignTime\SpryCollapsiblePanelDesignTime.js.BA CKUP
    ==================================
    = Step 2:
    ==================================
    Edit SpryTabbedPanelsDesignTime.js and make the following
    changes:
    1. Go to line 188, you should see something that looks like
    this:
    eval("opts = " + args[ 1 ]);
    Change it so that it looks like this:
    try { eval("opts = " + args[ 1 ]); } catch(e) { opts = null;
    2. Save the file.
    ==================================
    = Step 3:
    ==================================
    Edit SpryCollapsiblePanelDesignTime.js and make the following
    changes:
    1. Go to line 188, you should see something that looks like
    this:
    eval("opts = " + args[ 1 ]);
    Change it so that it looks like this:
    try { eval("opts = " + args[ 1 ]); } catch(e) { opts = null;
    2. Save the file.
    ==================================
    = Step 4:
    ==================================
    Launch Dreamweaver and make sure that you can now load your
    file.
    --== Kin ==--

  • Dynamic drop down list crash dreamweaver CS3

    Hi,
    I'm having a problem with Dreamweaver CS3.I'm running it with
    Vista SP1
    I try to create a mysql dynamic dropdown list in AJAX with
    this
    Tutorial
    Once the form is created and when I try to insert the php
    code and change the name of the variable , Dreamweaver crash
    everytime and close.
    I tried also with other tutorial and codes but it crashes
    everytime I insert some dynamic dropdown list.
    If someone ever encountered this probleme or have any idea
    ... thanks !!

    The Preview function is a development feature to demonstrate the results of merging data (the .xml specificed in Form Properties > Preview > Data File) with the .xdp or .pdf. When you open in the form in Reader or Acrobat the same .xml file is not merged with the form automatically.
    To get data into a PDF you have a number of options including:
    1) use LiveCycle Forms ES server-side solution to do data merge
    2) use a data connection to a database or a Web Service
    3) use JavaScript importData() or FormCalc get()
    To use options 2) and 3) the form has to be rights-enabled for the respective function to work in Reader.
    If you use option 3), you can attach the JavaScript 'xfa.host.importData()' to a button or some other event. When importData() fires it will prompt the user with a file browser to pick the .xml. The importData() method will work if the PDF is rights-enabled, only. Open the PDF in Acrobat Professional, from the toolbar, select 'Advanced > Extend Features in Adobe Reader' and save the PDF.
    Note, if you specify the .xml file name in importData(), the PDF must be certified. This is for security purposes.
    Steve

  • AS2 debugger insta-crash in CS3/Mac

    I'm running Flash CS3 on an intel mac (macbook pro). When
    debugging an AS2 project, if I press opt-F7 to step over a line of
    code the flash IDE immediately crashes. I can click the debugger
    icon to step over so it's something about the keypress in
    particular. Anyone else seen this? Any suggestions? Thanks!
    Mike

    More info: I use a Microsoft Ergonomic 4000 USB keyboard. If
    I press opt-F7 on the macbook keyboard the crash doesn't occur. So
    it's specific to the USB keyboard.

  • Opening InDesign CS and CS3 documents Crash InDesign CS3

    Hi Everyone,
    When we have a CS3 document open, and we want to open a CS document simultaneously, InDesign completely crashes and will not open again until the computer is restarted. This has happened every time we have attempted this. Is this a bud with CS3??? The only work around is to close the CS3 Document and open the CS document, then re-open the CS3 document. This works, but it is a real pain, and time waster! Does anyone have any suggestions???
    thanks~
    Jarrod
    Compuer:
    Pentium 4 @ 2,4Ghz
    Win XP pro with SP2
    1.0 GB ram

    Have you updated CS3 to 5.0.2?
    When you say crashed, do you get any error message? Have you checked Task Manager to see if the application or the InDesign.exe process is still running? There are a fair number of reports that InDesign "disappears" when opening files from Explorer and this might be something similar.
    Peter

  • SpryTabbedPanels.css crashing DW CS3

    I've got files using the updated SpryTabbedPanels widget.
    Everything worked fine until I changed the color of the selected
    tab in the SpryTabbedPanels.css file ( .TabbedPanelsTabSelected )
    Saved the file and exited DW. The next time I tried to open
    that file, or any file with the tabbed panel, DW crashed.
    I edited the file with notepad to remove the link to the css
    file, and DW opens it fine. Put that link back, and DW again
    crashes when I try to open the file.
    Then I remembered I had used a 6 digit hex color number,
    rather than the 3 digit defaults. Edited the CSS to use a 3 digit
    number, and the problem is solved.
    Don't know if this is a Spry or DW bug, but it's definitely a
    repeatable crash.
    DW CS3, Win XP SP3

    Hi Mypsa,
    This is a documented Dreamweaver CS3 bug. The same thing
    happened to me just yesterday, and I called Adobe Technical
    Support. The Adobe Team is working on a permanent update fix for
    this problem.
    It's the size of the CSS file. If this particular CSS file is
    exactly 8KB or a multiple of 8KB, Dreamweaver will crash. The
    temporary solution is to add and take away from your file to keep
    it away from those numbers. When you changed your hex colors, you
    probably changed your file size.

  • All copies illustrator crash, cs2 cs3 cs4 Leopard 10.5.8 powermac 1.8 dual

    I crashes every time i open it. it suddenly started happening. i could get just past  the opening pane at first allowing me to choose what kind of document to open print rgb etc, the it stopped doing that. i get the opening pane the it crashes, it aslo happens in past copies cs2 cs3 cs4 non of my illustrator copies will open

    It could be an issue with your font caches.  Go get fontnuke and try deleting all your system and application font caches.
    It doesn't sound like a preference issue if it's affecting all the other versions.  Do you have the suite installed?  Is Photoshop working properly?

  • New user keeps crashing indesign CS3

    So i had to add a new user for someone that needs to work on my station in the morning.  I created a new admin user for them and everything else in CS3 suite works okay but indesign. Indeisgn launches okay but when a document is launched it crashes. This is on a G5 10.4.11 OSX. anyone have any clue?

    Repairing permissions is never the answer but people give it out all the time. Even major vendors Mac support team do. Adobe doesn't use the .pkg format for their installers, therefore repair permissions will not help.
    See http://support.apple.com/kb/HT1452
    Does Disk Utility check permissions on all files?
    No. Files that aren't installed as part of an Apple-originated installer package are not listed in a receipt and therefore are not checked. For example, if you install an application using a non-Apple installer application, or by copying it from a disk image, network volume, or other disk instead of installing it via Installer, a receipt file isn't created. This is expected. Some applications are designed to be installed in one of those ways.
    Rather than repairing permissions your better bet assuming you made them an administrator is to go to your Adobe InDesign CS3 folder and slap the Get Info (CMD+I) and check under permissions. I'll assume since you made them an admin that you are also an admin. Under permissions there is a second set of pulldowns called "Group" which are probably going to say "Administrator" on the first and "Read & Write" on the second. Select the second one, set to read, set back to read and write, hit the "Apply to Subfolders" button. You'll likely be prompted for your password.
    Now open the Adobe InDesign CS3 folder, switch to List View, select all files, hit ALT+Right Arrow. Press select all once more, repeat the step above. This is because OS X is fairly poor about applying permissions.
    If you are unconfident feel free to copy your entire folder to your Desktop prior to doing this.
    I'd wager a shiny nickel you have installed a 3rd party plugin, could be as innocuous as a font manager autoactivation one. You won't see the errors from those oftentimes until a document is loaded.

Maybe you are looking for