ASP.NET parameters in URL ??

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default ASP.NET parameters in URL ??

    Hello,


    What's the deal with the ? in a URL ? I know it is used to transport some
    parameters but how can the aspx page retrieve those values ? for instance
    WebForm1.aspx?ID=12345

    How to get the ID value, I suppose it has to be retrieved in the Page_Load
    event, but how ?


    TIA

    Jurjen de Groot
    G.I.T.S., Netherlands


    Jurjen de Groot Guest

  2. Similar Questions and Discussions

    1. Passing Parameters To CFC
      I am testing how to return data from a CFC within Flash Forms. I have a simple <cfselect> tag that will hold data returned from a CFC. This CFC...
    2. Using URL Parameters in DW
      Using Dreamweaver MX 2004 I am trying to complete a tutorial that says the following: 1. Set a place holder (from info from a mysql database) for...
    3. create parameters without creating parameters
      cant you create ado command parameteres without creating a parameter object? i have a function that takes the name of a stored proc, and two...
    4. parameters
      you get this because it cannot find the field it is looking for. it is looking at the query and saying I don't know what the value for this word is...
    5. Parameters in ASP
      I'm not entirely sure what it is that you are trying to do but at a guess you want to manipulate a URL's parameters. This is easily achieved using...
  3. #2

    Default Re: ASP.NET parameters in URL ??

    request.querystring("ID")


    Onur Bozkurt Guest

  4. #3

    Default Re: ASP.NET parameters in URL ??

    Request["name"];

    to save typing
    Hugo Wetterberg Guest

  5. #4

    Default Re: ASP.NET parameters in URL ??

    Here is how you get the value. Hope this helps.

    string Qr = Request.QueryString["ID"];
    Noel Ablon is offline Junior Member
    Join Date
    Jun 2011
    Posts
    1

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