Did the code tag implementation change?

Over in the UIX forum, we have been relying on the ability to embed XML content inside of a "code" tag - and for as long as I can remember this would automatically escape HTML/XML start/end tags so that they would be displayed in the message content. For example, users have been posting uiXML samples like this:
(Note, in this sample I have added a trailing whitespace in the opening code tag so that the forum software will display the tag instead of interpret it. Also, I have explicitly escaped < and > myself so that they will be displayed.)
[code ]
<messageTextInput id="whatever"
name="neededName"
prompt="Prompt 2">
<boundMessage select="error2"/>
</messageTextInput>
Previously, the code tag would automatically handle escaping the open/close tag characters (< and >) to the appropriate character entities (< and >). This no longer seems to be happening. The end result is that embedded XML code is sent back to the browser unescaped, and ends up being interpreted by the browser as HTML - which generally makes such content unreadable. Here is what the above sample looks like now:
[code ]
<messageTextInput id="whatever"
name="neededName"
prompt="Prompt 2">
<boundMessage select="error2"/>
</messageTextInput>
This change in behavior has two really bad consequences:
1. This is making it very difficult to post uiXML samples, which means that users are having a hard time posting test cases, and the UIX team is having a hard time posting sample solutions.
2. We have a large number of code samples that have been posted to the forum over the last year or so. All of these samples are now unreadable.
Was there a change in behavior in how the code tag handles HTML/XML escaping? Can we get the old behavior back?
Andy

I really didn't mean to have smiley faces in my post - another interesting feature! What I meant to say was:
"Previously, the code tag would automatically handle escaping the open/close tag characters, &lt; and &gt; , to the appropriate character entities: &amp;lt; and &amp;gt;."
And actually, I forgot to take the whitespace out of my sample code tag - let me try posting the sample code one more time, this time inside of an actual code tag:
<messageTextInput id="whatever"
                  name="neededName"
                  prompt="Prompt 2">
  <boundMessage select="error2"/>
</messageTextInput>Andy

Similar Messages

  • Java forum code button broken.... Whats the code to write the code tags?

    I cant use the code button. I click it nothing happens any idea why? I forgot the code that makes the code tags.

    the "code" button was introduced for the homework kiddos in an attempt to honour their requests to "gif mi zu koduz" and teach them some English at the same time.
    By general request of senior forum members that functionality has now been removed but the now disfunctional button was retained.

  • When I updated to the latest IOS last night, why did the photo events date change?

    When I updated to the latest IOS last night, why did the photo events date change?

    The problem is that the Add-ons Manager tab when opened the first time, is on "Get Add-ons" section and that must be downloaded from the Add-ons server which might be overburdened.
    * If you need to look for new Add-ons, go directly to the Add-ons site -> https://addons.mozilla.org/en-US/firefox/
    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Add-ons are disabled after updating Firefox#w_check-for-new-versions-of-your-add-ons|Check for New versions of your Add-ons]]
    Check and tell if its working.
    Not related to your problem but some of your Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • I am updating content in an old site and am using an old extension to close a child page.  It has worked fine up until I started using CS6.  The code for this is in a template I am using and the code has not changed.

    So the site is www.fulcrumcwi.com and the page URL is: FulcrumCWI Rebecca Morgan Operations Strategy Consulting Newsletters.
    if you choose the first HTML link to the current newsletter when you try to use the close buttons neither of them work.  Yet if you go down to the issue from January, and go to the HTML version, it works just fine.  This is the code that the extension puts in:
    <form>
              <input name="Close" onclick="self.close();return false" type="button" value="Close" />
            </form>
    I haven't changed it in any way.  The only change is that I'm using Dreamweaver CS6 to make these changes.  Anyone have a fix for me?
    As always, thanks in advance.  (and yes, I know this site needs major updating)
    GraphicEdge

    Boy, that didn't really come out very well.
    On the archive_newsletters.html page, the "HTML" links are supposed to have target="_blank" in them...
    <a href="newsletters_html/2014_03.html" target="_blank">HTML</a>
    so a new tab is opened with the info. That new tab is then closed by the this.close() javascript.
    On the newsletters that don't close correctly, there is no target="_blank" to open them in a new window initially, so they can't close with that method.

  • When trying to sync my bookmarks etc to my new laptop (windows 8) it says it is synced but there is nothing on my new laptop. I did the code both ways

    I have a new laptop and numerous bookmarks I want to retreive from my desktop, I set up an account and paired the device both ways and its says synced but my laptop isn't showing the bookmarks or anything. Do you get the code from the old device and enter in the new device correct? again I did both ways because it didn't work so not sure what to do

    Thanks Amitshree
    I did go to those Links but again it's still not working so I need a little more assistance because although it says it is synced I see none of my bookmarks on my new laptop.

  • Where to put the code for dynamically change  dataprovider

    I have a table bound to dataprovider1 by default ( by the SJC ). In the same page, I also have a dataprovider2 which is for the same fields of the same table of dataprovider1. The only different is to put some criteria on one field ( like F_D1 = '5' ) so that one provider will show all rows, the other just some rows.
    The code to change the dataprovider is as follows :
    tableRowGroupWorksheet.setValueBinding("sourceData", getApplication().createValueBinding("#{WorksheetPage.dataprovider2}") );
    If I put this code into some button_action() and then I click that button, then the page displays the corresponding data just fine.
    But if I put this code in either preprocess or prerender, then things seems messed up : the number of pages is for data of dataprovider1, but when I click button Next of the table then it shows the number of pages of dataprovider2. ( I also try to put it in init but this does not help either ).
    I need this code to be run when this page is selected but right now it requires me to click on a button :(
    The reason I need it runs automatically is because of the logic generated from the previous page.
    Thanks for your advive,
    Vu

    After re-reading the life-cycles of JSF and the injected phases of SJC, I think I know why it does not work when the page is first called. In this case, AplyRequestValue phase is skipped therefore preprocess is never called. Also in this case, the component tree, with binding, validators, ... is only built in the Render Response phase and this phase is right after PreRender is called therefore the binding code I put in prerender is overwritten by Render Response.
    When using a button action, the component tree is already built and not rebuit under Render Response, therefore that code is not overwritten. Also in this case, preprocess is called so putting that code under either preprocess or prerender will work.
    Please correct me.
    Thanks,
    Vu

  • E71's lock code. I forget the code i've changed, p...

    Here we are T_T i changed the code and now i cant remember it :-s wat should i do to take the code again
    Please help me to solve this problem 

    As already mentioned, you will have to visit a Nokia care point. Bring along a proof of ownership if you have changed the code your self and cannot remember it. The default one should be 12345.

  • Did The 7.02 Upgrade Change the Rules for Variables

    If I remember correctly, before we applied the 7.02 upgrade,
    this code:
    <cfset mylist = "a,b,c">
    <cfoutput>
    <cfloop list = mylist index = "x">
    #x# <br />
    </cfloop>
    </cfoutput>
    would produce
    a
    b
    c
    I now produces
    mylist
    To get the expected (by me, anyhow) result I have to change
    this
    <cfloop list = mylist index = "x">
    to this
    <cfloop list = #mylist# index = "x">
    or this
    <cfloop list = "#mylist#" index = "x">
    What does the code produce on your system and what version of
    cf are you running?

    as far as I can recall, if you're looping over a dynamic list
    you've -always- needed to do <cfloop list="#myList#" ... >
    without the pound signs (but with quotes), CF sees the string
    as a literal string and a single element list ("myList").
    i'm in the habit of always quoting attribute values, so i've
    always done it as "#myList#". i can't comment on just doing
    list=myList or list=#myList#, but even if those worked, i'd suggest
    not relying on that and getting into the habit of placing quotes
    around your attribute values.

  • Why did the country currency suddenly changed from € to $?

    hi there,
    since i tried to get some songs from australia, the country currency suddenly changed into $. now, i can't buy songs at itunes anymore, which is pretty sad! does anybody know how to fix that?
    thanx,
    lilly

    Hi Lily,
    Welcome to Apple Discussions.
    You can only purchase through another country's music store if you have a billing address and a credit card in that country. So unless you have this, you are only able to purchase through the German store.
    This is not the fault of Apple, it is to do with the record companies who hold the rights to the music. They decide which countries can have what.
    Hope this helps
    Cheers
    NikkiG

  • Did the urxvt shading setting change?

    It seems to me that the recent version of URXVT in the repositories, v9.09, comes with a switch of the shading setting. Before, I had the lines
    URxvt*transparent: True
    URxvt*shading: 0
    URxvt*fading: 20
    in my ~/.Xdefaults config file, but after the upgrade I just got a black background rather than the pseudo-transparent background I always had before. I looked at the man page and saw this:
    shading: number
    Darken (0 .. 100) or lighten (100 .. 200) the
    transparent background; option -sh
    so I switched to
    URxvt*shading: 100
    and my transparent background was displayed again. I've had this happen on both my Arch installs.
    The urxvt changelog is here (with, apparently, a new release just hours ago). I don't see anything in the 9.09 release notes that looks like it mentions this, but there are a couple vague pixmap related changes.
    Can anyone else confirm this change (edit: specifically, the pre-9.09 behavior)? I seem to remember the shading setting only darkening the background and 0 was for no darkness, hence I originally had it set to 0.
    (I'm curious if the shading setting did change or if I actually had it at 100 and just set it to 0 accidentally in the midst of editing and syncing misc config files between machines (which I find unlikely).)
    Last edited by B-Con (2010-12-13 20:41:08)

    Got the same behaviour.

  • Why did the form I created change after saving?

    I have Adobe Acrobat XI Standard and was creating a form from a PDF. I didn't have permission so I made a copy of the form so that I wouldn't have any restrictions. I was able to edit the copy perfectly and it printed perfectly. I saved as a Reader Extended PDF so that the recipient could save and print, I emailed the form and then when I opened the attachment, part of it was all jumbled. Now the file is saved jumbled and I can't go back to the original. Is there a way I can fix this without redoing everything? How did this happen? See the bottom of the page under Insurance Requirements as a reference attached.

    I couldn't get the image to attach.....

  • Did the message editor get changed or did I accidently change my web-browser settings?

    The edit screen looks different this AM. Is this just my machine?
    If it is new, then does anyone know how to use the new features?
    Thena agin, after my coffee starts to work, I may figure this out myself.
    If that worked I may have incuded a smiley face for the first time in my life!
    Ben
    yeah! It worked!
    Message Edited by Ben on 07-01-2005 09:31 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

    Thank you Molly. Looks like JLV and CC will have some more emoticons to play with.
    As always, when challenged, I can manage to find problems.
    First up, the buttons all have graphics, which take time to load, so unless they load, you see an empty gray space (I'm saying this because it happened, even though I'm on a "broadband" connection, which can sometimes be quite narrow. At first I thought it was a bug, because the buttons were wide, so I thought they were supposed to have text which I wasn't seeing).
    To attach images, you still need to have an address.
    The attachment field is still far from the edit window.
    On my system (XP), there seems to be some wierd glitch when you have 2 windows. I originally tried responding to this thread when I had another reply window open and I couldn't get the cursor to appear for the second window. Only after a few tries of opening and closing did it appear.
    Try to take over the world!

  • Why did the playlist time format change in iTunes 10.6? Can I get the old format back?

    My iTunes playlists used to give a precise total play time. Now that I downloaded the new version of iTunes, the playlist just estimates the time. So, "1 hour" could mean 1 hour and 2 or 3 or 4 minutes. That is a big problem for people who teach 60-minute fitness classes! I plan my class around that playlist, and 3 or 4 minutes is a big deal. Now I am having to add up the time of songs by hand. What a pain!  Is there any way to get back the old format of time, which estimated exactly "59 minutes" or I think it was more precise, like "00:59:12."  I need this format back.  The estimate of "1.1 hours" is killing me.

    Hello. When I go to "About iTunes," it says "10" but then "10.6 (40)" underneath, in fine print.
    Actually, "40.3" minutes is different from the previous format.  It used to give the time in hh:mm:ss. This is an image of my problem:
    Now that the time is given in decimals, there are some minutes unaccounted for. I have a playlist that is 58 minutes (I added it on a calculator), but iTunes tells me it's 1 hour. I know it doesn't seem like a big deal but it matters when you have a 60 minute class and you are guided by your playlist.

  • Why did the preset web resolution change from 72ppi to 135ppi?

    Hi,
    I just noticed this in the latest photoshop update. Is there a reason why this is? If this is to make designing for retina easier (not having to zoom as much in photoshop), why isn't it at 144?
    Just curious – thanks!

    I guess if you are a web designer, 72 is kind of a benchmark for Mac screen resolutions going back to the mid-1990s. 96 is the Windows standard of 640 x480 px.
    It's kind of weird. Those two screen resolution standards are no longer common and I would think browsers today would adjust to fit the screen.
    I wouldn't even worry about the number in the resolution field.
    Gene

  • Did DW update 8.0.2 change the code?

    I would really appreciate a look into this problem. I I have
    ordered some Interakt extensions and have noticed the code changed
    on me (see lots below). But then I went to another machine with the
    8.0.2 update with NO EXTENSIONS ENABLED or the Interakt installed
    and I get the same code change. I have posted this to Interakt as
    well so I am looking for a reason for this bizzare problem. I have
    a client who has already paid up front for a quite involved dynamic
    site and I cant get the folders, database and connections strings
    to work together like the site before the extensions and upgrade.
    Posted to Interakt:
    I have been at this for 5 days now and I am at a complete and
    total loss and do not have a clue why this is happening. But I can
    say that this problem started AFTER I installed the Interakt
    products KHTML4, Kollection3, MxCalendar, MX CSS Menus AND/OR
    DW8.0.2. - I don't know which came first.
    Several months back I created a web site
    www.bobbygainesfunktion.com - site works. I was not using the
    products or upgrade (pretty sure) upgraded DW, then I bought the
    Interakt products 3 weeks ago hoping I could make fabulous websites
    but I am not able to do the simplest thing like create a folder and
    link to the database ASPVBScript style. I keep getting a reoccuring
    error and the code has also changed in how the pages are created
    dynamically.
    I created the funktion site without the upgrade and the
    products - about 90% sure. I was able to create a folder and link
    to the database from inside it with no problem.
    The code is as follows for the page as well as its
    cooresponding connection file:
    PAGE
    BAND.ASP
    %@LANGUAGE="VBSCRIPT"%
    <!--#include file="Connections/connfunktion2.asp" -->
    <%
    Dim tourlist
    Dim tourlist_numRows
    Set tourlist = Server.CreateObject("ADODB.Recordset")
    tourlist.ActiveConnection = MM_connfunktion_STRING
    tourlist.Source = "SELECT * FROM Gig WHERE GStamp >=
    Date() ORDER BY GStamp ASC"
    tourlist.CursorType = 0
    tourlist.CursorLocation = 2
    tourlist.LockType = 1
    tourlist.Open()
    tourlist_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = 4
    Repeat1__index = 0
    tourlist_numRows = tourlist_numRows + Repeat1__numRows
    %>
    CONNECTION PAGE; connfunktion2.asp:
    <%
    ' FileName="Connection_ado_conn_string.htm"
    ' Type="ADO"
    ' DesigntimeType="ADO"
    ' HTTP="true"
    ' Catalog=""
    ' Schema=""
    Dim MM_connfunktion_STRING
    MM_connfunktion_STRING =
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
    Server.MapPath("data/funkdata.mdb")
    %>
    Band.asp is located in the root of the directory so the
    address to the connection file: Connections/connfunktion2.asp
    works.
    A FILE IN FOLDER CALLED ADMIN:
    GIGLIST.ASP
    <!--#include file="../Connections/connfunktion.asp" -->
    <%
    Dim seeGig
    Dim seeGig_numRows
    Set seeGig = Server.CreateObject("ADODB.Recordset")
    seeGig.ActiveConnection = MM_connfunktion_STRING
    seeGig.Source = "SELECT * FROM Gig ORDER BY GStamp ASC"
    seeGig.CursorType = 0
    seeGig.CursorLocation = 2
    seeGig.LockType = 1
    seeGig.Open()
    seeGig_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = -1
    Repeat1__index = 0
    seeGig_numRows = seeGig_numRows + Repeat1__numRows
    %>
    CONNECTION PAGE: Connfunktion.asp
    <%
    ' FileName="Connection_ado_conn_string.htm"
    ' Type="ADO"
    ' DesigntimeType="ADO"
    ' HTTP="true"
    ' Catalog=""
    ' Schema=""
    Dim MM_connfunktion_STRING
    MM_connfunktion_STRING =
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
    Server.MapPath("/data/funkdata.mdb")
    %>
    Note that the addresses have changed for both the Map.Path
    and the include file to accomidate the folder.
    THIS SITE WORKS
    Now That I have bought the Interakt product AND/OR upgraded
    to DW8.0.2 I cannot for the life of me replicate this process.
    The following address is live:
    http://www.homecomputertutor-sc.com/twoconn/admin/
    This uses the exact same method of connection file and
    database address change.
    Index page in folder named admin:
    @LANGUAGE="VBSCRIPT" CODEPAGE="1252"
    <!--#include file="../Connections/twoconn.asp" -->
    <%
    Dim Recordset1
    Dim Recordset1_cmd
    Dim Recordset1_numRows
    Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
    Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
    Recordset1_cmd.CommandText = "SELECT * FROM News"
    Recordset1_cmd.Prepared = true
    Set Recordset1 = Recordset1_cmd.Execute
    Recordset1_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = -1
    Repeat1__index = 0
    Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
    %>
    NOTICE A DIFFERENCE! -
    {{{Dim Recordset1_cmd
    Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
    Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
    Recordset1_cmd.CommandText = "SELECT * FROM News"
    Recordset1_cmd.Prepared = true}}}
    This is the line of code that is failing:
    Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
    Connection File code:
    <%
    ' FileName="Connection_odbc_conn_dsn.htm"
    ' Type="ADO"
    ' DesigntimeType="ADO"
    ' HTTP="true"
    ' Catalog=""
    ' Schema=""
    Dim MM_twoconn_STRING
    MM_twoconn_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=" & Server.MapPath("/database/twoconn.mdb")
    %>
    Have I upgraded to DW8.0.2 since the creation of Funktion - I
    think. Could this be a Dreamweaver problem and not yours - I don't
    know. I would appreciate a good look into this.
    Thanks so very much,
    Katherine Wakefield
    [email protected]

    Part of the 8.0.2 update of DW8 was to secure recordsets to
    prevent SQL
    injection attacks. This has caused some problem with
    extensions that work
    with or create recordsets and extension developers have been
    working to make
    their extensions work with the new code.
    It was my understanding that Interakt had published updates
    of all their
    affected extensions for 8.0.2. I found this technote on their
    site that
    should answer a lot of your questions. If it doesn't, they
    have extensive
    forums on their site for all of their products.
    http://www.interaktonline.com/Support/Knowledgebase/Technote/Details/217/15/Working+with+t he+latest+InterAKT+Extensions+Dreamweaver+8.0.2+compatible.html
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Awakekats" <[email protected]> wrote in
    message
    news:[email protected]...
    >I would really appreciate a look into this problem. I I
    have ordered some
    > Interakt extensions and have noticed the code changed on
    me (see lots
    > below).
    > But then I went to another machine with the 8.0.2 update
    with NO
    > EXTENSIONS
    > ENABLED or the Interakt installed and I get the same
    code change. I have
    > posted
    > this to Interakt as well so I am looking for a reason
    for this bizzare
    > problem.
    > I have a client who has already paid up front for a
    quite involved dynamic
    > site
    > and I cant get the folders, database and connections
    strings to work
    > together
    > like the site before the extensions and upgrade.
    >
    > Posted to Interakt:
    >
    > I have been at this for 5 days now and I am at a
    complete and total loss
    > and
    > do not have a clue why this is happening. But I can say
    that this problem
    > started AFTER I installed the Interakt products KHTML4,
    Kollection3,
    > MxCalendar, MX CSS Menus AND/OR DW8.0.2. - I don't know
    which came first.
    >
    > Several months back I created a web site
    www.bobbygainesfunktion.com -
    > site
    > works. I was not using the products or upgrade (pretty
    sure) upgraded DW,
    > then
    > I bought the Interakt products 3 weeks ago hoping I
    could make fabulous
    > websites but I am not able to do the simplest thing like
    create a folder
    > and
    > link to the database ASPVBScript style. I keep getting a
    reoccuring error
    > and
    > the code has also changed in how the pages are created
    dynamically.
    >
    > I created the funktion site without the upgrade and the
    products - about
    > 90%
    > sure. I was able to create a folder and link to the
    database from inside
    > it
    > with no problem.
    > The code is as follows for the page as well as its
    cooresponding
    > connection
    > file:
    > PAGE
    > BAND.ASP
    > ##########
    > %@LANGUAGE="VBSCRIPT"%
    >
    > <!--#include file="Connections/connfunktion2.asp"
    -->
    > <%
    > Dim tourlist
    > Dim tourlist_numRows
    >
    > Set tourlist = Server.CreateObject("ADODB.Recordset")
    > tourlist.ActiveConnection = MM_connfunktion_STRING
    > tourlist.Source = "SELECT * FROM Gig WHERE GStamp >=
    Date() ORDER BY
    > GStamp
    > ASC"
    > tourlist.CursorType = 0
    > tourlist.CursorLocation = 2
    > tourlist.LockType = 1
    > tourlist.Open()
    >
    > tourlist_numRows = 0
    > %>
    > <%
    > Dim Repeat1__numRows
    > Dim Repeat1__index
    >
    > Repeat1__numRows = 4
    > Repeat1__index = 0
    > tourlist_numRows = tourlist_numRows + Repeat1__numRows
    > %>
    > #####
    > CONNECTION PAGE; connfunktion2.asp:
    > <%
    > ' FileName="Connection_ado_conn_string.htm"
    > ' Type="ADO"
    > ' DesigntimeType="ADO"
    > ' HTTP="true"
    > ' Catalog=""
    > ' Schema=""
    > Dim MM_connfunktion_STRING
    > MM_connfunktion_STRING =
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
    > Server.MapPath("data/funkdata.mdb")
    > %>
    >
    > Band.asp is located in the root of the directory so the
    address to the
    > connection file: Connections/connfunktion2.asp works.
    >
    > A FILE IN FOLDER CALLED ADMIN:
    > GIGLIST.ASP
    > #####
    > <!--#include file="../Connections/connfunktion.asp"
    -->
    > <%
    > Dim seeGig
    > Dim seeGig_numRows
    >
    > Set seeGig = Server.CreateObject("ADODB.Recordset")
    > seeGig.ActiveConnection = MM_connfunktion_STRING
    > seeGig.Source = "SELECT * FROM Gig ORDER BY GStamp ASC"
    > seeGig.CursorType = 0
    > seeGig.CursorLocation = 2
    > seeGig.LockType = 1
    > seeGig.Open()
    >
    > seeGig_numRows = 0
    > %>
    > <%
    > Dim Repeat1__numRows
    > Dim Repeat1__index
    >
    > Repeat1__numRows = -1
    > Repeat1__index = 0
    > seeGig_numRows = seeGig_numRows + Repeat1__numRows
    > %>
    > ####
    > CONNECTION PAGE: Connfunktion.asp
    > <%
    > ' FileName="Connection_ado_conn_string.htm"
    > ' Type="ADO"
    > ' DesigntimeType="ADO"
    > ' HTTP="true"
    > ' Catalog=""
    > ' Schema=""
    > Dim MM_connfunktion_STRING
    > MM_connfunktion_STRING =
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
    > Server.MapPath("/data/funkdata.mdb")
    > %>
    >
    > Note that the addresses have changed for both the
    Map.Path and the include
    > file to accomidate the folder.
    >
    > THIS SITE WORKS
    >
    > Now That I have bought the Interakt product AND/OR
    upgraded to DW8.0.2 I
    > cannot for the life of me replicate this process.
    >
    > The following address is live:
    >
    http://www.homecomputertutor-sc.com/twoconn/admin/
    >
    > This uses the exact same method of connection file and
    database address
    > change.
    >
    > Index page in folder named admin:
    > @LANGUAGE="VBSCRIPT" CODEPAGE="1252"
    > <!--#include file="../Connections/twoconn.asp" -->
    > <%
    > Dim Recordset1
    > Dim Recordset1_cmd
    > Dim Recordset1_numRows
    >
    > Set Recordset1_cmd = Server.CreateObject
    ("ADODB.Command")
    > Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
    > Recordset1_cmd.CommandText = "SELECT * FROM News"
    > Recordset1_cmd.Prepared = true
    >
    > Set Recordset1 = Recordset1_cmd.Execute
    > Recordset1_numRows = 0
    > %>
    > <%
    > Dim Repeat1__numRows
    > Dim Repeat1__index
    >
    > Repeat1__numRows = -1
    > Repeat1__index = 0
    > Recordset1_numRows = Recordset1_numRows +
    Repeat1__numRows
    > %>
    > NOTICE A DIFFERENCE! -
    >
    > {{{Dim Recordset1_cmd
    > Set Recordset1_cmd = Server.CreateObject
    ("ADODB.Command")
    > Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
    > Recordset1_cmd.CommandText = "SELECT * FROM News"
    > Recordset1_cmd.Prepared = true}}}
    >
    > This is the line of code that is failing:
    > Recordset1_cmd.ActiveConnection = MM_twoconn_STRING
    >
    > ####
    > Connection File code:
    >
    > <%
    > ' FileName="Connection_odbc_conn_dsn.htm"
    > ' Type="ADO"
    > ' DesigntimeType="ADO"
    > ' HTTP="true"
    > ' Catalog=""
    > ' Schema=""
    > Dim MM_twoconn_STRING
    > MM_twoconn_STRING =
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
    > Server.MapPath("/database/twoconn.mdb")
    > %>
    >
    > Have I upgraded to DW8.0.2 since the creation of
    Funktion - I think. Could
    > this be a Dreamweaver problem and not yours - I don't
    know. I would
    > appreciate
    > a good look into this.
    >
    > Thanks so very much,
    > Katherine Wakefield
    > [email protected]
    >
    >
    >

Maybe you are looking for

  • Search in ical doesn't work

    I am using 10.7.4 and my iCal search doesn't work. When I type in a search term, the results pane is blank. Help, please.

  • Options for Client_host

    Hi, Do anyone have a link which can show what are all the parameters (or options) that can be used along with client_host and webutil_host Regards

  • Adobe reader not opening.Error message DCIMAN32.dll missing.Howfix?

    How do I find or replace the DCIMAN32.dll file?

  • Setting ToolTips for items which are disabled.

    Folks, No offence meant if this is a repeat. I have a JPopupMenu with Action as its components. 1) I have disabled certain menu items to false. 2) I would like to use a ToolTipText to show a message 'You have no permission' when the user hovers over

  • CCMS monitor, BPE is red

    In CCMS monitoring RZ20, the node XI_system Business Process Engine -> Overall status -> Status of the automatic customizing is red. The text is BPE customizing not fully maintained. When clicking this text, an information page is shown, and you can