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.

Similar Messages

  • Pages, numbers, iPhoto, iMovie and keynote will not update after installing yosemite and yes I have the original disk

    How do I get pages, numbers, keynote, iPhoto and iMovie to update after installing OS X 10.10? I have the original disk.

    Cancel the updates. Delete the apps. Redownload them from the Purchases tab in the App Store.

  • Problem printing page numbers in black and white

    Using Pagemaker 7.0 and creating a PDF file that I send to a printer. The interior pages of this newsletter get printed in black and white.  The page numbers do not show up in the black page number background oval.  The printer says that that is because the two colors used for the page number and the oval background both get converted to the same gray scale value.  He suggested that I set the page number to white and the background to black.  Is there any way to set the colors that are used for the page number and the background?

    You should make sure that anything on your interior pages is black and white, never trust someone else to convert things to B&W for you. If you are using a master page for the page numbers, that should be black and white too. You can have two master pages, one for color page numbers and one for black and white page numbers.
    Jay

  • Adobe AIR and Dreamweaver CS3

    I have installed: dreamweaver cs3 + extension manager air. I
    would like create an AIR application. So i create a html file and
    when i try to access at "Site > AIR Application Settings", this
    option is disabled.
    Why ? any person has an idea ? thanks

    hello,
    nobody can help ?
    in addition to the problem, i look around the dreamweaver
    config
    i find the error msg come from the file "AIRSettings.js",
    it's appear the var jreversionObj cannot retrieve the good version
    of jre who is installed on my os ..
    i do not understand why .. so i comment the line who check
    this.. and at last, i can acceed to the AIR panel settings in
    dreamweaver CS3,
    but now, when i try to compile my Air app.. i have the msg
    where i have to make a certificat,
    i try it, but have an error msg say "Error creating the
    digital certificate file. An error log was created"
    and in the AIR error log file : i have some unknow caracters
    in file like "Y" with 2 point on it..
    any advice to solve this ?
    thanks in advance (and sorry for my english :o)

  • CourseBuilder and Dreamweaver CS3

    I got a new PC with Dreamweaver CS3 and had Dreamweaver MX 04
    with courseBuilder Interactions. Are CourseBuilder Interactions for
    CS3 available. Anyone have Info?
    thanks
    bob

    Where did you find CourseBuilder for CS3? The latest version I can find is for DW8. I have DreamWeaver CS4 and really want to use coursebuilder. I can get CourseBuilder for CS4 but it requires an "upgrade" to the eLearning suite. I presently the Adobe Web Premium CS4 suite. It would be very hard to justify buying the eLearning suite just to get CourseBuilder and the SCORM packager. (The SCORM packager is available for free download anyway.)
    I guess I wonder if CourseBuilder for CS3 would work with CS4 and if it's significantly different than the CourseBuilder for DW8 version.

  • Contribute CS4 and Dreamweaver CS3

    Downloaded the Contribute CS4 trial today. All in all, it was
    a disaster. Now I cannot upload files from my dreamweaver site at
    all. Is Contribute CS4 compatible with dreamweaver CS3?
    How do I remove the files created by the contribute install?
    Thanks,
    Annette

    1. start Contribute
    2. main menu >Edit>Administer Websites>Choose
    website
    3. choose Administration from the list on the left
    4. click the button 'Remove Administration'

  • ASP and Dreamweaver

    A newbie question here folks, but I desperately need your
    help...
    My site has a page called www.mysite.com/work
    That page has links to click on where you can view details of
    the work... those links open pages that look like this--
    mysite.com/work.asp?projects=2
    Where can I find the text being generated in the above
    mentioned page? I have browsed thru all of my page files in the
    site and cannot find where the .asp text is originating from.
    Help!

    > Thanks for the input guys... Sorry Brandon... would
    > www.hypotheticalsite.com
    > be better?
    Actually,
    http://www.example.com would be
    best, as it's a TLD that has been
    reserved specifically for that use.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "PelicanHead" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thanks for the input guys... Sorry Brandon... would
    > www.hypotheticalsite.com
    > be better?
    >
    > Let me be a little more specific about my question--
    >
    > My site (which i have inherited only because my designer
    /webmaster and
    > the
    > company i work for have parted ways) has a page where
    you can view 25 or
    > 30
    > items listed vertically. Underneath each of these items
    is a link to click
    > for
    > more info. When a visitor clicks they are taken to a
    page that provides
    > several
    > paragraphs of detail on that item. OK, no big deal.
    >
    > When i took over duties for the site, one of my first
    chores was to
    > rewrite
    > some of the copy on these "detail" pages. The problem i
    encountered was
    > that
    > when I looked in Dreamweaver, all i could see was the
    file "work.asp" .
    > When
    > viewed the code looked like something this>
    >
    > CASE 4
    > bioName = "John Doe"
    > bioTextId = 4
    > bioPic = "John-Doe"
    > celebURL = "<BR><a
    > href=""
    http://www.johnpdoe.com/"">http://www.johnpdoe.com/</a>"
    > CASE 5
    > bioName = "Bob Smith"
    > bioTextId = 5
    > bioPic = "bob-smith"
    > celebURL = "<BR><a
    > href=""
    http://www.bobsmith.com/"">http://www.bobsmith.com/</a>"
    >
    > etc.....
    >
    > My dilemma is that I cant find any files that contain
    the detailed copy...
    > The
    > code appears to be pointing to a bioTextID # but where
    is the
    > corresponding
    > data? ... That is the number referenced when a site
    visitor opens that
    > page
    > (i.e. www.hypotheticialsite.com/work_bio.asp?bio=5) I
    cannot find the
    > paragraph
    > of info anywhere in any of the .asp files... Where is it
    pulling this text
    > from??? Is it imbedded somewhere on work.asp? When I
    look at it all is see
    > is
    > the above code.
    >
    > Sorry if this sounds convoluted... Web design and
    maintenance is not my
    > trade.
    > I appreciate your help!!!!
    >
    >
    >
    >
    >

  • Fireworks CS3  and Dreamweaver CS3 (Menu problems)

    I am trying to develop buttons in fireworks, import them into Dreamweaver, but for some reason it it cause my menu at the top of the page to expand outward. Take a look here. http://www.gcfa.org/episcopal-revision.html Any help would be great. Thanks in advance.

    I figured it out. It was really stupid and to tell you the truth I am not sure what happened. But I fixed it by taken out all of the menu and redoing it.Weird huh! Thanks anyway.

  • Anyone using ASP and Dreamweaver

    Hey everyone,
    This article is sadly out of date and we are looking for
    something to replace it:
    http://www.adobe.com/devnet/dreamweaver/articles/setting_up_asp.html
    My thinking is that someone out there has already written
    these instructions and posted them, but I'm not sure where to look.
    The other possibility is that someone out there might really want
    to re-write this, and if so, we could post your article on the
    Adobe Developer Center and you could become famous!
    Please chime in if you are at all interested.
    Jon Michael Varese
    Lead Writer, Dreamweaver

    Hi Jon,
    I have a very good ASP guy that may be interested, could you
    pop me a not
    offline and I'll put you in touch.
    lawrence at cartweaver dot com
    Lawrence *Adobe Community Expert*
    Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF
    "Jon Michael Varese" <[email protected]>
    wrote in message
    news:gg7kq5$bca$[email protected]..
    > Hey everyone,
    >
    > This article is sadly out of date and we are looking for
    something to
    > replace
    > it:
    >
    >
    http://www.adobe.com/devnet/dreamweaver/articles/setting_up_asp.html
    >
    > My thinking is that someone out there has already
    written these
    > instructions
    > and posted them, but I'm not sure where to look. The
    other possibility is
    > that
    > someone out there might really want to re-write this,
    and if so, we could
    > post
    > your article on the Adobe Developer Center and you could
    become famous!
    >
    > Please chime in if you are at all interested.
    >
    > Jon Michael Varese
    > Lead Writer, Dreamweaver
    >

  • Mac OS X and Dreamweaver CS3 Synchronization Problem

    Demaweaver does not try to synchronize files located in
    expanded subdirectories:
    - try to change and then list (click rectangle to expand)
    files from one of subdirectories
    collapse directory where this subdirectory is located
    - try to synchronize collapsed directory
    - does not work! (dreamweaver doe not try to put changed
    files - check ftp log)
    My solution: collapse site with 'alt' key before synchronize
    (selecting newer local ...).

    Okay, now I got tuned sound to the other ear too... but I had to put the balance  almost all to the left... and at the same time the max volume is reduced quite a lot even though I put the input volume to Max on system preferences.

  • How to automate the adding of page numbers to bookmark and how to export bookmarks?

    I am using Acrobat 9 Pro (not aware of any miningful reason to upgrade).
    Also, if someone knows about a decent application that is capable of combining PDFs into a PDF file of size larger than 2GB that would be highly appreciated.
    Acrobat can combine but can't save files larger than 2GB...
    Thanks,
    David

    Hello Tavares,
    What you seek can be done, but before that you must know from where you want to take the data. In what form you will get the data in and where you want to use it and how.
    Your problem is what we call an architectural issue. If possible please write to me at [email protected]
    With the above information - I shall be able to help you to some extent.
    Ironluca

  • Pages, numbers, keynote, iPhoto and iMovie not free for my Ipad Air

    HI,
    I've just bought my new ipad air. why i can't get all those apps for free? it said in the apple website free for all iOs 7 compatible device that have been activated on or after 1 September 2013.
    Please kindly advice.
    Thanks.
    Regards,
    tewepunya

    The iWork for iOS apps are free for anyone who has activated an iOS device for the first time since September 1, 2013. If your iOS device is older than that you will have to purchase the apps or a new device.
    If your iOS device was activated for the first time after September 1, go to the App Store on your iPad which should open to Featured. If not, tap on Featured at the lower left of the screen & scroll down to Collections & tap on New to the App Store? then scroll down to Apps Made by Apple & tap. You should now see the iWork & iLife apps as "FREE."

  • Pages, Numbers and Keynotes doesn't allow me to save documents

    I created a new document in pages, numbers or keynote and, when trying to save it to my documents folder, it shows me "Couldn't auto-save document".
    I've tried with different folders with the same results.
    There's no problem when saving to iCloud.
    I had installed iWork'09 and moved it to another folder.
    Versions are: Pages 5.2.2, Numbers 3.2.2 with OSX 10.9.5 Mavericks in a iMac 27-inch late 2009

    Are you running any anti-virus, anti-malware on your Mac? If so, disable this a/v software.
    If not, I would suggest the following:
    Boot into Recovery (hold command+R at the chime)
    Run Disk Utility (verify/repair permissions, and verify drive) on your boot drive
    Reboot normally
    Boot into safe mode ( you can do this during the above reboot)
    At boot chime, press and hold shift key until horizontal progress bar appears
    At login prompt, press and hold shift key, after your password, but before clicking right arrow to log in.Press and hold shift key until your Desktop appears
    Reboot normally
    Re-evaluate if Pages auto-save failure dialog gone.

  • Pages, Numbers, and Keynote files as attachments in emails

    Why can't I attach a file to an email unless I export it to Word or Excel?
    If I create a file in Pages, Numbers, or Keynote and save it to my documents, I can't attach that file to an email. It says the file cannot be attached. If I go back to the file and export to Word or Excel, It will attach to the email. How can I fix this?

    Are you using Apple's Mail app?  Are you composing the email using Apple's Mail app and then trying to attach a file?  Are you using current versions of Pages, Numbers, Keynote (Pages 5.2, Numbers 3.2, Keynote 6.2)?

  • Read and Write Permissions in Dreamweaver CS3

    I have searhed the web endlessly for what seems like a simple question? How do you set read and write permissions for an upload folder in dreamweaver cs3?
    I finally came accross one forum which described.
    You go to the files panel and change the drop down menu from "Local View" to "Remote View".
    Then you select the upload folder you created and right click on it.
    A pop up menu appears and you select "set permissions"
    This is where I am ok to. My defualt permissions are set to 666. Does anyone know the number to set it to if i would like visitors to my site to be able tp upload files?
    ps I am using windows vista and dreamweaver cs3.

    My defualt permissions are set to 666. Does anyone know the number to set it to if i would like visitors to my site to be able tp upload files?
    Try 775 first, but you will probably need to use 777, which is the least secure set of permissions. Normally, if you want to allow people to upload to your website, you should create a login system and allow only registered users to upload to a folder that has permissions set to such a weak level. Otherwise, you could lay yourself open to all sorts of abuse.

Maybe you are looking for