473,756 Members | 2,703 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Syntax Challenged

I find myself Syntax Challenged.
An array resides on a MasterPage.
I want to use the values of the array on an aspx page which is a content
page of the MasterPage.
I can not find the syntax that works.

For a single value (non-array) the following will work.

On the MasterPage:
public String CompanyName
{
get { return (String) ViewState["companyNam e"]; }
set { ViewState["companyNam e"] = value; }
}
void Page_Init(Objec t sender, EventArgs e)
{
this.CompanyNam e = "JimBo";
}On the ContentPage:<%@ MasterType virtualpath="~/Master1.master" %>void
Page_Load(Objec t sender, EventArgs e)
{
Label1.Text = Master.CompanyN ame;
}I need the equivalent code for a array. Code examples would be
appreciated.Tha nks,Jim
May 31 '06 #1
4 1115
public String[] MyArray
{
get { return (String[]) ViewState["MyArray"]; }
set { ViewState["MyArray"] = value; }
}


Jim McGivney wrote:
I find myself Syntax Challenged.
An array resides on a MasterPage.
I want to use the values of the array on an aspx page which is a content
page of the MasterPage.
I can not find the syntax that works.

For a single value (non-array) the following will work.

On the MasterPage:
public String CompanyName
{
get { return (String) ViewState["companyNam e"]; }
set { ViewState["companyNam e"] = value; }
}
void Page_Init(Objec t sender, EventArgs e)
{
this.CompanyNam e = "JimBo";
}On the ContentPage:<%@ MasterType virtualpath="~/Master1.master" %>void
Page_Load(Objec t sender, EventArgs e)
{
Label1.Text = Master.CompanyN ame;
}I need the equivalent code for a array. Code examples would be
appreciated.Tha nks,Jim

Jun 1 '06 #2
Ray:
This generates an error:
public String[] MyArray
{
get { return (String[])ViewState["MyArray"]; }
set { ViewState["MyArray"] = value; }
}

protected void Button1_Click(o bject sender, EventArgs e)
{
MyArray[0] = "Zero";
Label1.Text = MyArray[0].ToString();
// Generates error: Object reference not set to an instance of an object.
}

"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OS******** ******@TK2MSFTN GP03.phx.gbl...
public String[] MyArray
{
get { return (String[]) ViewState["MyArray"]; }
set { ViewState["MyArray"] = value; }
}


Jim McGivney wrote:
I find myself Syntax Challenged.
An array resides on a MasterPage.
I want to use the values of the array on an aspx page which is a content
page of the MasterPage.
I can not find the syntax that works.

For a single value (non-array) the following will work.

On the MasterPage:
public String CompanyName
{
get { return (String) ViewState["companyNam e"]; }
set { ViewState["companyNam e"] = value; }
}
void Page_Init(Objec t sender, EventArgs e)
{
this.CompanyNam e = "JimBo";
}On the ContentPage:<%@ MasterType virtualpath="~/Master1.master" %>void
Page_Load(Objec t sender, EventArgs e)
{
Label1.Text = Master.CompanyN ame;
}I need the equivalent code for a array. Code examples would be
appreciated.Tha nks,Jim

Jun 1 '06 #3
I was just showing you how to create the property.

Where are you created the array to set it to the property.

Using:
String[] _a = new String[1] {"Hello"};

You can create the array and then set it to the property:

MyArray = _a;

Then:

MyArray[0] = "Zero" will work.

Jim McGivney wrote:
Ray:
This generates an error:
public String[] MyArray
{
get { return (String[])ViewState["MyArray"]; }
set { ViewState["MyArray"] = value; }
}

protected void Button1_Click(o bject sender, EventArgs e)
{
MyArray[0] = "Zero";
Label1.Text = MyArray[0].ToString();
// Generates error: Object reference not set to an instance of an object.
}

"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OS******** ******@TK2MSFTN GP03.phx.gbl...
public String[] MyArray
{
get { return (String[]) ViewState["MyArray"]; }
set { ViewState["MyArray"] = value; }
}


Jim McGivney wrote:
I find myself Syntax Challenged.
An array resides on a MasterPage.
I want to use the values of the array on an aspx page which is a content
page of the MasterPage.
I can not find the syntax that works.

For a single value (non-array) the following will work.

On the MasterPage:
public String CompanyName
{
get { return (String) ViewState["companyNam e"]; }
set { ViewState["companyNam e"] = value; }
}
void Page_Init(Objec t sender, EventArgs e)
{
this.CompanyNam e = "JimBo";
}On the ContentPage:<%@ MasterType virtualpath="~/Master1.master" %>void
Page_Load(Objec t sender, EventArgs e)
{
Label1.Text = Master.CompanyN ame;
}I need the equivalent code for a array. Code examples would be
appreciated.Tha nks,Jim


Jun 1 '06 #4
Thanks Ray, it worked.
Jim
"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
I was just showing you how to create the property.

Where are you created the array to set it to the property.

Using:
String[] _a = new String[1] {"Hello"};

You can create the array and then set it to the property:

MyArray = _a;

Then:

MyArray[0] = "Zero" will work.

Jim McGivney wrote:
Ray:
This generates an error:
public String[] MyArray
{
get { return (String[])ViewState["MyArray"]; }
set { ViewState["MyArray"] = value; }
}

protected void Button1_Click(o bject sender, EventArgs e)
{
MyArray[0] = "Zero";
Label1.Text = MyArray[0].ToString();
// Generates error: Object reference not set to an instance of an object.
}

"Ray Booysen" <rj***********@ rjb.za.net> wrote in message
news:OS******** ******@TK2MSFTN GP03.phx.gbl...
public String[] MyArray
{
get { return (String[]) ViewState["MyArray"]; }
set { ViewState["MyArray"] = value; }
}


Jim McGivney wrote:
I find myself Syntax Challenged.
An array resides on a MasterPage.
I want to use the values of the array on an aspx page which is a
content page of the MasterPage.
I can not find the syntax that works.

For a single value (non-array) the following will work.

On the MasterPage:
public String CompanyName
{
get { return (String) ViewState["companyNam e"]; }
set { ViewState["companyNam e"] = value; }
}
void Page_Init(Objec t sender, EventArgs e)
{
this.CompanyNam e = "JimBo";
}On the ContentPage:<%@ MasterType virtualpath="~/Master1.master"
%>void Page_Load(Objec t sender, EventArgs e)
{
Label1.Text = Master.CompanyN ame;
}I need the equivalent code for a array. Code examples would be
appreciated.Tha nks,Jim


Jun 1 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

22
3430
by: Tuang | last post by:
I'm checking out Python as a candidate for replacing Perl as my "Swiss Army knife" tool. The longer I can remember the syntax for performing a task, the more likely I am to use it on the spot if the need arises. If I have to go off and look it up, as I increasingly have to do with Perl's ever hairier syntax, I'm more likely to just skip it, making me even less likely to remember the syntax the next time. So I hear that Python is easier...
28
2393
by: Paul McGuire | last post by:
Well, after 3 days of open polling, the number of additional votes have dropped off pretty dramatically. Here are the results so far: Total voters: 55 (with 3 votes each) Votes for each choice or group of choices: Any J 81 J2 78 Any C 40 C1 29 Any D 9
4
6537
by: MLH | last post by:
I apologize in advance to forum readers noticing this somewhat redundant post. I fear that my Subject Heading was ill-chosen in earlier post I made on this topic. Am hoping that a clearer Subject heading will attract the knowledgeable forum contributors I'm seeking. Thank-you... I'm being academically challenged trying to build a pass-through query inside of Access 2.0 to "reach out 'n touch" a remote data file running on a Linux box in...
2
1294
by: Richard Lawson | last post by:
Every time developers try to connect to a Windows 2003, IIS 6.0 server they are challenged by NT. The directory is shared and they have full rights and can connect using Windows Explorer and Notepad. However, they are challenged with Visual InterDev 6.0. Only the administrator's login and password will let them in. I have re-set their permissions several times. Hmmmmm.
0
9255
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10014
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9844
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9819
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7226
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5119
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5289
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3780
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2647
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.