Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. one webform to other

one webform to other

Scheduled Pinned Locked Moved ASP.NET
help
5 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    Tarun Suneja 0
    wrote on last edited by
    #1

    hi frndz, i am working with a project and stuck sumwhere. i need sum help regarding that. actually i have some items in one dropdownlist of a webform(.aspx page). i want the selected value to be transferred to a textbox in other webform(second .aspx page). i'll be thankful to u if u can help me...... with thanks... Tarun Suneja

    R N A 3 Replies Last reply
    0
    • T Tarun Suneja 0

      hi frndz, i am working with a project and stuck sumwhere. i need sum help regarding that. actually i have some items in one dropdownlist of a webform(.aspx page). i want the selected value to be transferred to a textbox in other webform(second .aspx page). i'll be thankful to u if u can help me...... with thanks... Tarun Suneja

      R Offline
      R Offline
      Rutvik Dave
      wrote on last edited by
      #2

      You need to read about Session in ASP.Net, you can find some nice atricles on CodeProject. anyways quick answer is: On the First Page. at "DropDownList" : "SelectedIndexChanged" event. store the value in the Session. i.e.

      Session["_Value"] = DropDownList1.Text

      And on Second Page. at Page Load event. get the value stored in the session. i.e.

      TextBox1.Text = (string) Session["_Value"];

      T 1 Reply Last reply
      0
      • T Tarun Suneja 0

        hi frndz, i am working with a project and stuck sumwhere. i need sum help regarding that. actually i have some items in one dropdownlist of a webform(.aspx page). i want the selected value to be transferred to a textbox in other webform(second .aspx page). i'll be thankful to u if u can help me...... with thanks... Tarun Suneja

        N Offline
        N Offline
        N a v a n e e t h
        wrote on last edited by
        #3

        Pass it as query string if the information is not secured.

        Navaneeth How to use google | Ask smart questions

        1 Reply Last reply
        0
        • R Rutvik Dave

          You need to read about Session in ASP.Net, you can find some nice atricles on CodeProject. anyways quick answer is: On the First Page. at "DropDownList" : "SelectedIndexChanged" event. store the value in the Session. i.e.

          Session["_Value"] = DropDownList1.Text

          And on Second Page. at Page Load event. get the value stored in the session. i.e.

          TextBox1.Text = (string) Session["_Value"];

          T Offline
          T Offline
          Tarun Suneja 0
          wrote on last edited by
          #4

          thanx buddy thanx alot

          1 Reply Last reply
          0
          • T Tarun Suneja 0

            hi frndz, i am working with a project and stuck sumwhere. i need sum help regarding that. actually i have some items in one dropdownlist of a webform(.aspx page). i want the selected value to be transferred to a textbox in other webform(second .aspx page). i'll be thankful to u if u can help me...... with thanks... Tarun Suneja

            A Offline
            A Offline
            Ashutosh Phoujdar
            wrote on last edited by
            #5

            Try this :

            Respose.Redirect("~/second.aspx page?selectedValue=" + DropDownList1.SelectedValue.ToString()

            dnpro "Very bad programmer" My Latest Articles RichTextBox Control with Find functionality LogViewer - A Simple Log Listening Utility

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups