How to Acces inline field value in c# code behind?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nirmalsingh
    New Member
    • Sep 2006
    • 218

    How to Acces inline field value in c# code behind?

    hai all,
    i am having 3 pages, such as
    1.main.html
    2.middle.js(aja x technology)
    3.server.aspx(c #)

    now, without passing url parameter through middle.js to server.aspx, i want to get text box value of main.html in server.aspx(cod e behind). how can i get the client side value in server side script(c#)?
    Last edited by nirmalsingh; Jun 6 '07, 08:49 AM. Reason: spelling mistake
  • nateraaaa
    Recognized Expert Contributor
    • May 2007
    • 664

    #2
    Have you considered changing the .html file to a aspx file so that you can access the value of the Text Box more easily? You could then save the value in the text box as a Session variable to access the value in another .aspx page.

    Nathan

    Comment

    • nirmalsingh
      New Member
      • Sep 2006
      • 218

      #3
      Originally posted by nateraaaa
      Have you considered changing the .html file to a aspx file so that you can access the value of the Text Box more easily? You could then save the value in the text box as a Session variable to access the value in another .aspx page.

      Nathan
      thanx for reply nathan,
      actually it is a aspx page only, not html, for example i mentioned as html. i dont want to use session for some reasons. suggest me another way to do this.

      Comment

      Working...