get existing url parameter

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

  1. #1

    Default get existing url parameter

    trying to get the existing URL Parameter (i.e. ID=675675) into a text box or on a label

    i tried just adding the ID field to the text box text but it doesn't work

    acidrain9 Guest

  2. Similar Questions and Discussions

    1. Where to buy existing FMS applications?
      Hi, Can anyone point me to a few sites that would sell exisiting Flash Media Server collaboration applications that I could install on my own FMS...
    2. Looking for someone to help with existing flash
      Hey there, Well, I have a couple of flash pieces that need a little work. I have tried to use flash, but fail miserably. In the first case, I...
    3. CF MX7 won't map to existing wwwroot
      CF MX7 appears to be running fine. But the CF applications that I had running in my IIS wwwroot directory won't work. When I try to run a very...
    4. How can I add to existing Record Set?
      I use code like this in order to create a recordset and enter data into the recordset: strSQL = "SELECT * FROM InventoryItemList WHERE Desc LIKE...
    5. Date Parameter For Saved Parameter Queries
      Hi again, I finally got to using saved parameter queries in my application (a big thank you to Bob Barrows for helping me with this). Currently...
  3. #2

    Default Re: get existing url parameter

    nevermind i figured it out.

    i tried this once and it didn't work, but when i added the DataBound Request String from the bindings panel it worked fine.

    '<%# Request.QueryString("ID") %>
    acidrain9 Guest

  4. #3

    Default Re: get existing url parameter

    A more versatile way is to use Request.ServerVariables ('QUERY_STRING' ) or Request.ServerVariables ('URL' ) etc
    kidsonk 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