Display text in text box - should be simple, doesn't work

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

  1. #1

    Default Display text in text box - should be simple, doesn't work

    This is probably dumb, but why doesn't this work? The control doesn't get
    filled with the text, though I debug and vControl.Text does indeed show as
    having the right text in it. It's being called from a SelectionChanged event
    in a calendar.

    System.Web.UI.WebControls.TextBox vControl =
    (System.Web.UI.WebControls.TextBox)Session["TheControl"];
    vControl.Text = Calendar1.SelectedDate.ToShortDateString();

    --
    - Jim Owen
    206-501-6936


    Jim Owen Guest

  2. Similar Questions and Discussions

    1. Display XML as text
      Hi, I'm loading XML data into Flash via the XMLConnector data component. I can display the XML content in a data grid just fine, but all I want to...
    2. text display
      May be a dream weaver question but I got no response from that forum. I have a test box that I have dropped a dynamic field into. Normally the box...
    3. Text preview in text display...
      Just updated my mac to OS X... When I scroll through the text in the text panel, it can show you a preview of the font. It should show the...
    4. How do you get 'Text to display' (hover text) in Publisher?
      I cannot get to add any text to display when the cursor hovers over any hyperlink. The URL or page link details show, but I want to add my own text...
    5. Text in the work area vs. text in the Flash movie
      Even when I use any font even the default _sans serif font, the size, scale and location of the letters are not the same in the published movie (or...
  3. #2

    Default Re: Display text in text box - should be simple, doesn't work

    Hi,

    Probably something related to the session?

    Can you send more code?

    By the way can you tell me why you save webcontrols in the session?

    Natty Gur, CTO
    Dao2Com Ltd.
    28th Baruch Hirsch st. Bnei-Brak
    Israel , 51114

    Phone Numbers:
    Office: +972-(0)3-5786668
    Fax: +972-(0)3-5703475
    Mobile: +972-(0)58-888377

    Know the overall picture


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Natty Gur 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