Results 1 to 3 of 3

Thread: Unable to display value

  1. #1
    TaylorRyan is offline Senior Member
    Join Date
    Dec 2009
    Posts
    307
    Rep Power
    3

    Default Unable to display value

    Unable to display value in asp.net form

    I am learning Asp.net programming language. I am doing various examples in one example I used one session to save values before entering that value in to previous page. When I used page load it shows null value. When I pass the value to button click it also shows null value. I do not know why not able to display value in asp.net form.

  2. #2
    ThomasBarnes is offline Senior Member
    Join Date
    Dec 2009
    Posts
    303
    Rep Power
    3

    Default

    1) It looks like that you are using various value to store and get back the values and that's why you are getting null value. If you have to use same variable to store and get back the values to fix this problem. If you are capable to save the value into session on the previous page then you will be capable to access the value in the second page if it is opened in the similar window.

  3. #3
    HernandezOrtiz is offline Senior Member
    Join Date
    Dec 2009
    Posts
    301
    Rep Power
    3

    Default

    2) In following code I save one value in one text file and after that I use this value in both pages to show value. I stored null value in "name" session.

    if(!ispostback)
    {
    somefile.Text = Convert.ToString(Session["name"]);
    Session["name"] = null;
    }

    // For button click you have to write this
    Session ["name"] = txtFirstname.Text.;
    Responses.Redirect(Requests.RawUrl,false);
    Responses.Redirects("Home.aspx");

Similar Threads

  1. PS3 No Display
    By PetersonClark in forum Gaming Accessories
    Replies: 2
    Last Post: 04-05-2010, 02:01 PM
  2. Sony and its 3D display with 360 °
    By leonardo sbaraglia in forum Latest Hardware News
    Replies: 0
    Last Post: 10-20-2009, 06:39 AM
  3. LG W1930S LCD Display
    By Mike Brearley in forum Graphic & Displays
    Replies: 0
    Last Post: 10-08-2009, 09:56 AM
  4. IE can't display the webpages
    By calton in forum General Internet Terms
    Replies: 1
    Last Post: 01-15-2009, 05:52 AM
  5. Display
    By ciontim in forum Homebuilt Systems
    Replies: 0
    Last Post: 07-18-2008, 12:25 PM

Bookmarks

Posting Permissions

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

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