Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. simonfarrell

    How to use \ create application instance level variables

    Do you have a quick sample you could copy and pate in ? thanks
  2. simonfarrell

    swap one control for another?

    Use a PlaceHolder server control. <asp:PlaceHolder id=&quot;plhText&quot; runat=&quot;server&quot;/> Then change the control at the place holder dynamically according to the edit mode. txtBox = new Textbox txtBox.Text = &quot;Enter here&quot; plhText.Controls.Add(txtBox)
  3. simonfarrell

    How to use \ create application instance level variables

    I am creating an on-line store. It has several pages and I would like to share data for each instance of the application. I think I need to declare the variables in my Global.asax file but I'm not sure. How would I do this and how would I reference the variables from within a page.

Part and Inventory Search

Back
Top