important query:::::

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bushi

    #1

    important query:::::

    hi every one!
    i'm developing a web application in asp.net,c#(VS 2005).
    for the security of the administrator i have to pass some
    information to the next page(as we can do with html pages using query
    string).so that user cant directly access that page.i tried the same
    thing with asp.net but its not working.any idea or guidance related to
    it will appriciated.

  • Alexey Smirnov

    #2
    Re: important query:::::

    On May 4, 1:33 pm, bushi <bushra...@gmai l.comwrote:
    hi every one!
    i'm developing a web application in asp.net,c#(VS 2005).
    for the security of the administrator i have to pass some
    information to the next page(as we can do with html pages using query
    string).so that user cant directly access that page.i tried the same
    thing with asp.net but its not working.any idea or guidance related to
    it will appriciated.
    page.aspx?param eter=value

    Comment

    • Michael Nemtsev

      #3
      Re: important query:::::

      Hello Alexey,

      It depends on the security OP want to use, to send data to the next page,
      because the recommended solution suffer from spoffing.

      There is a number alternative, more secure ways - using DB, encrypting, certificates

      ---
      WBR, Michael Nemtsev [.NET/C# MVP].
      My blog: http://spaces.live.com/laflour
      Team blog: http://devkids.blogspot.com/

      "The greatest danger for most of us is not that our aim is too high and we
      miss it, but that it is too low and we reach it" (c) Michelangelo

      ASOn May 4, 1:33 pm, bushi <bushra...@gmai l.comwrote:
      AS>
      >hi every one!
      >i'm developing a web application in asp.net,c#(VS 2005).
      >for the security of the administrator i have to pass some
      >information to the next page(as we can do with html pages using query
      >string).so that user cant directly access that page.i tried the same
      >thing with asp.net but its not working.any idea or guidance related
      >to
      >it will appriciated.
      ASpage.aspx?par ameter=value
      AS>


      Comment

      • =?Utf-8?B?UGV0ZXIgQnJvbWJlcmcgW0MjIE1WUF0=?=

        #4
        RE: important query:::::

        if you are concerned about using the query string, stick the data in a
        Session variable prior to going to the next page. You can pick it up in the
        next page out of Session.
        Peter

        --
        Site: http://www.eggheadcafe.com
        UnBlog: http://petesbloggerama.blogspot.com
        Short urls & more: http://ittyurl.net




        "bushi" wrote:
        hi every one!
        i'm developing a web application in asp.net,c#(VS 2005).
        for the security of the administrator i have to pass some
        information to the next page(as we can do with html pages using query
        string).so that user cant directly access that page.i tried the same
        thing with asp.net but its not working.any idea or guidance related to
        it will appriciated.
        >
        >

        Comment

        Working...