How To Reference A Field In Another Class In A Separate Aspx Page, Using C#
Aug 19, 2010
I have a 2D array of doubles in my Default class on my Default.aspx.cs page, like so:
protected Double[,] time;
By the time the page loads, I have populated this array from a database. Now, I want to reference this array in another file (Diff.aspx.cs) to avoid visiting the database again. Also, the data is used in a read-only fashion.
View 2 Replies
Similar Messages:
Mar 14, 2011
Given an instance of a control SomeControl that is in a some file (could be a usercontrol/ascx, or an aspx) how can I get a reference to the class to which it belongs?
In a usercontrol, SomeControl.NamingContainer seems to be reliable.
In a page that inherits from a MasterPage, this will return a reference to the ContentPlaceHolder, not the actual class that defines the aspx. What I would want in that case is SomeControl.Page
Parent will return the parent control in the heirarchy so isn't much use.
Is there any method for getting this directly regardless of what kind of thing it is?
View 2 Replies
Aug 6, 2010
I'm wondering how I can go about accessing page controls from a separate class I've made. I've tried a few things I found using google, but no luck :(
What I'm trying to do is keep a function that is used often, in a global class.
The function then accesses a page literal and calls ScriptManager.RegisterStartupScript. I was hoping this is possible, so then this function wouldn't have to be copied to all of the pages.
View 4 Replies
Nov 3, 2010
Is that possible? The reason why am doing this is because I need to parse that variable into a an JQuery function so I wanted JQuery to read that field. Can I Assign that value in base class or I have to do it within default.aspx pageload method?
View 1 Replies
Nov 8, 2010
I have a separate aspx Page called Home.aspx page and a separate class called class1.cs
I want to attach the class1 into Home.aspx
I try with this but not work
[Code]....
View 5 Replies
Jan 31, 2010
We have three options to view any .aspx page in a tab
Design
Source
Split
How can we view Design and Source in separate tabs for a any aspx page ?
Or if this is impossible!! can we use split option by Vertically splitting the Design and Source ? if later one is possible, I could stretch the view onto two monitors like here as suggested by Nick Craver.
View 2 Replies
Mar 3, 2010
I wanna join all the field as a new col.
but how can i ignore the empty field because i always join the field and separate by space like the following.
select (field_1+' '+field_2+' '+field_3) as new_col from TABLEA
but if the field is empty, then there is the double space
how can i ensure all the space is one space only.
View 2 Replies
Nov 30, 2010
i want to know, can one aspx page have two or more code behind page?
like if i have page collge.aspx, by default it will inherit college.aspx.cs, i want to know can't it inherit more then one aspx.cs. If not then why?
View 3 Replies
Jun 9, 2010
I have published a aspx website in IIS 5.1. My second page refers to a .dll file of a vb6 program.My backend program is written in c#.At first when I published i couldnt load my second page as I got an error saying that I have to register external com objects....
so I registered the dll file in my root directory using "regsvr32 ". Now after registering im able to access that page, but the buttons are not responding. When I click the buttons on the page the refer to functions in that dll. But its waiting for localhost to respond for a long time and im not getting the results.
View 7 Replies
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
Oct 26, 2010
I have a basic ASP.NET (4.0) web site (in VS2010)
I have a few aspx forms with in it..
on default.aspx I have a aspxbutton1
on report.aspx I have a aspxlabel
All I need to know is HOW do I reverence the label from the default page and visa versa..
In the web world things are not the same.. This is just an example .. to prove the point.. but I am trying to copy the settings from one object on page 1 to an object on page2.
View 5 Replies
Feb 15, 2011
my MasterPage I have a label that reflects the name of the module that the user is currently in. I change the label text accordingly using the following ..
private void ChangePageTitle(string PageTitle)
{
Label lblPageTitle = (Label)Master.FindControl("lblPageTitle");
lblPageTitle.Text = PageTitle;
}
Instead of placing this method in the code-behind of every page, I want to put it in a single class and call it accordingly. I thought of using a static class but do not know how to reference the MasterPage.Can I use a static class? or do I place the method in the code-behind of one page and call Object.Method from the other pages?
View 2 Replies
Jan 24, 2011
I Have to add the reference at code behind n page load of this
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
View 2 Replies
Jun 23, 2010
How to make a reference to public const string from aspx page with c#
In VB its <% = MY_DATA%>
View 1 Replies
Aug 8, 2010
I am attempting to access a textbox control on a master page from a code behind base class but having problems. I have 3 levels of master pages. m1.master is the master page for m2.master which is the master page for m3.master.m3.master has a textbox as shown below
<%Master
Language="C#"
MasterPageFile="~/m2.master"
AutoEventWireup="true"
CodeFile="M3.master.cs"
Inherits="M3"
%>
<asp:Content
ID="Content5"
ContentPlaceHolderID="M2"
Runat="Server">
<asp:TextBox
ID="text1"
runat="server"
></asp:TextBox>
<asp:ContentPlaceHolder
ID="M3"
runat="Server"></asp:ContentPlaceHolder>
</asp:Content>
I have a content page c1.aspx that uses m3.master as its master page as shown below:
@
Page
Title=""
Language="C#"
MasterPageFile="~/m3.master"
AutoEventWireup="true"
CodeFile="c1.aspx.cs"
Inherits="_c1".................
View 2 Replies
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
Jul 12, 2010
am using class diagram of visual studio 2008as you can see the image i need show to user that the period and calendar classes have the idMarket property that refers to market classhow can i do this?
View 1 Replies
Feb 3, 2011
when i am declaring my connection string i am getting error below is my connection string
[Code]....
the error is A field initializer cannot reference the non-static field, method, or property 'Default3.con1' .i am unable to type con1.
View 2 Replies
Nov 1, 2010
I'm having problems trying to get the value of a db field I've got on a page inside a GridView control.
Basically, I'd like to do something like this:
use this field value when writing to an xml element
How do I get this value? I don't seem to be able to get it from the TextField template field.
View 7 Replies
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
Oct 5, 2010
How can we use required field validator on User Control in aspx page*strong text*
I have one user control that have one drop down. I am using this control on my page. I want to use required field validator on this drop down.
View 1 Replies
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" />
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
Nov 9, 2010
I have a webpage with a textbox, panel and a DropDownExtender, may plan is to dynamically add labels to the panel on load.
and my plan is to do the dynamic adding of labels in a Class.
so my problem is how can i pass a group Label Controls from a Class to the ASPX page Panel.
View 4 Replies
May 13, 2010
I'm web dev newbie. I'm trying to create a log file as a separate class that will catch every exception , the thing is I don't much about files, where it is created, the path should be given or not, where is the ideal place to create it
View 3 Replies
Aug 20, 2012
Looking for sample to access the hidden variable which is declared in the aspx page in the webmethod.
View 1 Replies