C# - Access To An Object Created In Page From A Class?

Jan 18, 2010

I have a page, Default.aspx, with its own code-behind file like this:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
public int[] anArray;
}

What I'd like to do is access to "anArray" from a C# class (not tied to a page) declared in App_Code folder. What can I do?

Edit: As said in the first comment, I really apreciate your about refactoring my connection objects. However, what I'm really doing here is to rewrite an old PHP application in order to get comfortable with basic C# and ASP.NET, so this code will never go really live. So, I'm still intersted in a way (if any) to access an object declared in a code-behind code from a standard C# class.

Edit2: I removed the OdbcConnection object in order to focus to the real problem: how to refer to an object istantiated in a code-behind file from a C# class situated in App_Code?

View 4 Replies


Similar Messages:

Web Forms :: Access Page Object Reference In Class?

May 27, 2012

I am trying to develop logic to add dynamic controls to page via class method. So I want to know how can we access the ASP.Net Page object reference in class method.

View 1 Replies

C# - Application Object Access From Regular Class?

Mar 25, 2011

store our DAO objects in the Application object, so there's one object of each available for the whole application.

This Application object is easily accessed in the Page codebehind itself, but how do we access it from a plain class that is not extending anything?

View 1 Replies

How To Access Session Object Outside The Web Project (class Library)

Oct 29, 2010

I am implementing a custom membership and role providers where I need to store all the role/membership information in the user's session.

I am implementing these custom providers inside a class library project (different from the website project) and need to access the session in them. The idea is to store the role/membership related information in the session after retrieving them for the first time from the database.

When I try to access the Session using System.Web.HttpContext.Current.Session

I get this as a null object (Object reference not set to an instance of an object.

Why is the session turning out to be null?

View 1 Replies

Class Access Session Object But Not When Deploying It To Server?

Mar 16, 2011

I have a custom MembershipProvider that I'm using in an ASP.NET 2.0 application. Inside of the class that extends membership provider, I have a function called AttemptLogin() that sets session variables if the user is valid. Inside that function, are a number of session variable assignments similar to the following:

HttpContext.Current.Session["id"] = "12345";

AttemptLogin() is being called by the Application_BeginRequest function in global.asax. This code works fine when I open it in visual studio, and then run it in the built-in development server by clicking "Start Debugging". However, when I deploy it to our testing server (Windows 2003 Server 64-bit running IIS in 32-bit mode), execution breaks when it reaches the code above, giving me the following message:

[NullReferenceException: Object reference not set to an instance of an object.]
CustomMembershipProvider.AttemptLogin() in c:InetpubwwwrootJoshApp_CodeCustomMembershipProvider.cs:1097
ASP.global_asax.Application_BeginRequest(Object sender, EventArgs e) in c:InetpubwwwrootJoshGlobal.asax:14
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +68
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75

How can I access the session state successfully in this situation? Why does it work locally and not on the server?

View 2 Replies

State Management :: Cant Access Object Property In Class?

Mar 28, 2010

I'm having a problem with a class library I'm building. I have a class called Users and inside this class I have a property called UserInfo that is an object. Both of the classes Users and UserInfo are built using MyGenerations dOOdads. When I create an object instance of the Users class I am able to access the UserInfo property without a problem in my Windows App, however when I using the same library in a website the UserInfo property continues to return a no reference error. Like I said when running it in a WinApp I have no problems at all, I can access the UserInfo property and likewise all of UserInfo's properties. I am also having problems trying to debug the library using the website. And again I have no problems when using the WinApp. The way I've set it up is I have the Class library project open, and then I add the WinApp project and then the website project. When I set the WinApp as the startup project and run it I have no problems, I can set breakpoints and step through the code no problem. But when I set the Website as the startup project and try to debug I get a massage saying the breakpoint won't be hit. I then do what it tells me and right click on the breakpoint and set the location to allow the source to be different. This lets me hit the breakpoint, but every time I hit F10 to step I get "There is no source code available for the current location." For every step I take. This is making it really hard for me to figure out what going on with the code in the website. Sorry for the lengthy explanation. Here's the Users class, again it works great in the WinApp, just not the website.

[Code]....

View 6 Replies

Add Stylesheet Link To Dynamically Created Page Object / Request Is Not Available In This Context

Sep 30, 2010

I'm creating a Page object and adding a control to it for printing purposes. The code works, however I can not find a way to add a stylesheet link to the header. In the code I pasted I'm trying to add a link to the header and then add the header control to the page, but this causes an error:

Request is not available in this context
System.Web.UI.Page.get_Request() +8700216
System.Web.UI.HtmlControls.HtmlHead.RenderChildren(HtmlTextWriter writer) +83.....

View 1 Replies

C# - Is A New Object That's Created In A Static Property Getter Only Created Once

Jan 11, 2010

I'm creating a static helper class for web services I'm writing. I'm tapping into the API of Telligent and therefore creating these Telligent "service" objects that allow me to do things with the platform. For example, I'm creating a MembershipSerice object in my helper class so I can do membership stuff with the same object. In my helper class I have a property with a getter that creates a new one of these objects:

private static MembershipService _MembershipService {
get return new MembershipService(path, usr, pwd);
[code]...

View 3 Replies

Access :: Data Access Class / Helper Class For Access Databases?

Mar 15, 2011

recommend a data access class / helper class for Access databases, similar to the sqlhelper class found in the (Data Access Application Block)?

View 6 Replies

Web Forms :: Access Control - Not Created By Master Page?

Jul 30, 2010

i am making an asp.net web application.. i wants user to give the facility to login and

View 3 Replies

Access Session Variable Created In Page From MasterPage?

Oct 21, 2010

I am creating some sessions on successful login and I need to access them from my master page. How do I go about this?

public void showUser()
{
if (!string.IsNullOrEmpty(Session["User"].ToString()))
{
Response.Write(Session["User"].ToString());
}
else
{
Response.Write("Not Logged In");
}
}

View 1 Replies

What's The Default Access Modifier For Controls Created On .aspx Page - Private Or Something Else

Jan 19, 2011

What is the default access modifier for controls created on .aspx page. Private or something else?

View 3 Replies

C# - Access Master Page Public Method From User Control/class/page

Oct 25, 2010

I am to access a method on my master page. I have an error label which I want to update based on error messages I get from my site.

public string ErrorText
{
get { return this.infoLabel.Text; }
set { this.infoLabel.Text = value; }
}

How can I access this from my user control or classes that I set up?

View 3 Replies

C# - Access Master Page / Child Page Controls From Class?

Jul 26, 2010

I have a div on my master page and I want to use it for showing page errors. I have an error display class and it works fine. My problem is that in some instances, the error gets displayed even before the tag resulting in (non)-display of the message. This is mostly with code that has response.redirect.

I want to counter this by having the error shown on a div within my master page.

How can I access <div id="errorSegment" runat="server">?

View 2 Replies

State Management :: How To Persist A Class Object When Page PostBack

Oct 5, 2010

i have created a user control UserControl.ascx, in Code behind file of UserControl.ascx i have created an object of a class MyClass.cs,

Like

if(!Page.IsPostback) {
objMyClass= new MyClass();
}

but when i click on button of UserControl.ascx page and try to access objMyClass object then it set as null, so how to persist MyClass object when page PostBack, i wanted to keep object persist till the user access the page, when user goes out of this page then object should distroy?

[code].....

View 9 Replies

Access Class From Within The Aspx Page

Nov 22, 2010

I am trying to do something such as:

<%= Class1.GetName %>

in my ASPX page, but my class1.vb can't work like this, I have to declare it first in the aspx page, how can I make my Class1.vb file be shared among the whole website?

View 1 Replies

Access Page Header From Within A Class

Feb 9, 2010

Does anyone know how to access a Page Header (Me.Page.Header) from within a class?

I'm working in ASP.NET

View 1 Replies

Web Forms :: How To Access A Queue In Class Page

Jul 22, 2010

I am trying to access an item default.aspx.vb which is in the class page in the app_code folder. Why am I unable to access this through intellisense?

If
Not m_qKnown.Contains(HRefs(i))
Then

here is the class page. In my vs, m_qknown is underlined in blue. How come I can't access this queue in this code behind page for the default.aspx? In my intellisense, if I try to prefix it with the name of the page (Charlotte.vb) Charlotte.Webcrawler. after this dot there is no m_qKnown. There are some queuing event handlers and that's about it.

I'm trying to avoid adding more items to a queue if the item is already in the known queue. I'm happy to email this website application to anyone who would like to test it.

[Code]....

View 2 Replies

Access Static Class Properties From Aspx Page?

Jan 28, 2010

I am on .aspx page and i want to take the width and height of a control from a static class
where i have defined them as constans.

Is there any way to access that class directly from the aspx page?

I know that i can make a method like:

width="<%= getWidthSize() %>"

and inside the aspx.cs to define this method to take the size from that static class.

But i am asking if this could be directly managed from the web aspx page...?

View 2 Replies

Access Current Instance Of Page From A Static Class

Mar 22, 2010

Basic question - is it possible to access the current Page from a static class in ASP.NET?

I am thinking no, as google turns up no results.

View 3 Replies

Web Forms :: Access Maser Page In Base Class?

Mar 9, 2010

I have a class BasePage this class inhereted from System.Web.UI.Page, all my other pages inhereted from BasePage.

How i can access Master page in BasePage ? To access master page at any page i use :

Template masterPage = Master as Template; where Template class of my Master page.

View 1 Replies

How To Access Object Tags In Aspx.cs Page

Mar 2, 2011

I desingned a page with tags, Now I want to access object tags in code behind.

This is aspx page code....

<object type="label" runat="server" class="System.Web.UI.WebControls.Label" id="label_priority" parent="-1" bindedfield="priority" empty="1" value="MyValue">

Here I am adding runat=server in object tags it is giving error as

"An object tag must contain a Class, ClassID or ProgID attribute."

then I added class="System.Web.UI.WebControls.Label", now not giving any error but not showing anything in browser.

so My question is how do I access object tags in aspx.cs page? or I want to create a label with object tag that is accessible in code behind.

View 2 Replies

C# - Access Object In Codebehind From Aspx Page?

Sep 24, 2010

C# or VB.NET are welcome.

I have an <%#Eval("FirstName")%> in the aspx page, I want to replace "FirstName" to <%#Eval(employee.FirstName)%> but "employee" object
is instantiated in the codebehind like this:

Public employee As New Employee

How can I call this object in the aspx page? Should I can create an "employee" in the aspx? if so, how to do that.

View 2 Replies

Web Forms :: Access Aspx Page Control In Webpart Class?

Jan 18, 2010

i have a hidden textbox in my aspx page. The aspx page also has a masterpage in the <% @Page> directive.

<input type="hidden" runat="server" name="txtType" id="txtType" />&nbsp;
actually in aspx.cs i am getting txtType.ClientID="ctl00_MainHeaderContent_txtType"

I have a webpart in a webpart zone in this aspx page. In the webpart CreateChildcontrols() I need to access this hiddenTextbox value. I am able to access it as

string TxtValue = this.Page.Request.Form["ctl00_MainHeaderContent_txtType"];

But instead of hardcoding I want to access as a control in the page or form. How can I do that I want to do as looping through the controls in the page but Page.Controls.Count gives 1 and that is MasterPage. How can I get the entire controls in the page and loop through and find the hidden textbox. I also tried as string TxtValue = this.Page.Request.Form["<%=txtType.ClientID%>"] in CreateChildControls() of the webp[art. But could not access hidden textbox like this.

View 2 Replies

Web Forms :: Access Base Class Functions From Master Page?

May 14, 2010

I have a base class called BasePage, and a master page called SiteMaster. All my content pages inherit BasePage using BasePage instead of System.Web.UI.Page. Now, I need to access some functions in BasePage from my master page SiteMaster, let's say, the function is called "DisplayClientName()". How can I do it? Searched the Web, have found tons of similar questions but not solid solutions.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved