Can anyone explain this to me?

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Can anyone explain this to me?

    Been trying to insert a record from A repeated region but keep hitting this
    particular brick wall.



    create the MM_fields and MM_columns arrays MM_fields = Split(MM_fieldsStr,"|")
    MM_columns = Split(MM_columnsStr,"|") ' set the form values For MM_i =
    LBound(MM_fields) To UBound(MM_fields) Step 2 MM_fields(MM_i+1) =
    CStr(Request.Form(MM_fields(MM_i))) Next ' append the query string to the
    redirect URL If (MM_editRedirectUrl<>""And Request.QueryString<>"") Then If
    (InStr(1, MM_editRedirectUrl,"?", vbTextCompare) = 0 And
    Request.QueryString<>"") Then MM_editRedirectUrl =
    MM_editRedirectUrl&"?"&Request.QueryString Else MM_editRedirectUrl =
    MM_editRedirectUrl&"&"&Request.QueryString End If End If End If

    ericMorcombe Guest

  2. Similar Questions and Discussions

    1. Ann please explain this.
      Again a question about the difference viewing flattened and not flattened images. Let me explain. I have an RGB image 35" x 44" at 360 dpi around...
    2. Can someone pls explain this...
      Can someone please explain what this code snippet below does? If I have an array, $xx, it gives me an array $xy, which is somehow transformed...but...
    3. Please Explain
      Hi I am trying to save (read / change / write) windows XP taskbar registry values. Like show clock, always on top and same for desktop setting ...
    4. Can Someone Explain (No Pun Intended) this Explain Plan Output ?
      We're running DB2 v7.1 on OS/390. The DBA guys gave us a macro to generate an explain plan against a query that is stored in a PDS member. The...
    5. can someone explain...
      this difference bewteen A and B below? A) $a = &new className(true, 6); B) $a = new className(true, 6); /* missing & on the NEW */ ...
  3. #2

    Default Re: Can anyone explain this to me?

    Is the brick wall you are hitting an error? If so, please include the error
    message and relevant lines of code..

    Drew

    "ericMorcombe" <webforumsuser@macromedia.com> wrote in message
    news:d4h8al$f1p$1@forums.macromedia.com...
    > Been trying to insert a record from A repeated region but keep hitting
    > this
    > particular brick wall.
    >
    >
    >
    > create the MM_fields and MM_columns arrays MM_fields =
    > Split(MM_fieldsStr,"|")
    > MM_columns = Split(MM_columnsStr,"|") ' set the form values For MM_i =
    > LBound(MM_fields) To UBound(MM_fields) Step 2 MM_fields(MM_i+1) =
    > CStr(Request.Form(MM_fields(MM_i))) Next ' append the query string to the
    > redirect URL If (MM_editRedirectUrl<>""And Request.QueryString<>"") Then
    > If
    > (InStr(1, MM_editRedirectUrl,"?", vbTextCompare) = 0 And
    > Request.QueryString<>"") Then MM_editRedirectUrl =
    > MM_editRedirectUrl&"?"&Request.QueryString Else MM_editRedirectUrl =
    > MM_editRedirectUrl&"&"&Request.QueryString End If End If End If
    >

    Drew Guest

  4. #3

    Default Re: Can anyone explain this to me?

    Not really an error. Would just like to know what the standard macromedia variables refer to and what the functions do.

    Eric
    ericMorcombe Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139