Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8945183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:11:29+00:00 2026-06-15T12:11:29+00:00

In C# i would like to access textbox from page directly without sending it

  • 0

In C# i would like to access textbox from page directly without sending it as variable to the class for example

file class.cs code

public class A {
    private string dosomething {
        string text;
        text = textbox1.text; 
        // textbox1 exists in, for example, default.aspx, and I need it's 
        // value in the class after some event occurred - let's say there 
        // is button and it was clicked 
    return text;
    }
}

default.aspx.cs code

protected void Button1_Click(object sender, EventArgs e) {
    A a = new A(); 
    // I need when this button clicked to fill the variable within
    // the class with the data given from the textbox within this page
}

This is what I’ve come up with, but I’m not sure if I’m taking the right path using a getter and setter this way:

private TextBox TextBox1 = new TextBox();
public string  settext {
    get { return TextBox1.Text; }
    set { TextBox1.Text = value;}
}

but I always get a NullReferenceException was unhandled message.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T12:11:30+00:00Added an answer on June 15, 2026 at 12:11 pm

    i found what i’m looking for and it’s working like charm i will put the way i did and the link for the article helped me to figure out how to solve it
    http://codebetter.com/jefferypalermo/2004/09/01/asp-net-2-0-master-pages-changes-the-pages-control-hierarchy-level-300/
    in case using master page same idea for without master page in my case i was using master page and i tested it on both with and without working fine

        private TextBox  gettextbox ( )
        {
    
            //without master page
               /*System.Web.UI.Page Default = (System.Web.UI.Page)System.Web.HttpContext.Current.Handler;
                 TextBox TextBox1 = (TextBox)Default[0].FindControl("TextBox1");*/
    
            //with master page
           System.Web.UI.Page Default = (System.Web.UI.Page)System.Web.HttpContext.Current.Handler;
       ContentPlaceHolder cph = Default.Controls[0].FindControl("ContentPlaceHolder1") as ContentPlaceHolder;
               TextBox Textbox1 = (TextBox)cph.FindControl("TextBox1");
               return Textbox1;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to have direct access to the text inside a textbox on
I would like to access class variables with for loop, here is my simple
I have a class in my asp.net proj, I would like to get access
I would like to access skyDrive using PHP. I want to retreive list of
I would like to access a MySQL database using PHP. Can someone please explain
I've got a website hosted on my IIS and I would like to access
I have an IEnumerable object. I would like to access based on index for
I would like to have access to the Seconds_Behind_Master field, (as returned by SHOW
I would like to define access right to Collabnet Subversion Directory with LDAP domain
We have a project (Web/PHP) where we would like users to access their files,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.