473,698 Members | 2,932 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to finish this property?

I have the property below. What I need to do is access the asp.net Menu
controls MenuItems in a content page that are on a master page. I need to
set the Enabled state to false when the page loads and re enable it when the
page goes to the next one. Any ideas how to finish this one? Or if I got it
wrong?

//return the main menu so other pages can use it.

public Menu Menu {

get { return MainMenu; }

set { }

}
Nov 16 '07 #1
3 1254
Andy,

Perhaps a set property isn't such a good idea? It might be a better
idea to get the menu passed to you through a method and perform your
operations through there.

Are you asking how to access the Menu in the property (through the value
keyword) or are you asking how to set all those properties on the Menu
instance?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Andy B" <a_*****@sbcglo bal.netwrote in message
news:eS******** ******@TK2MSFTN GP05.phx.gbl...
>I have the property below. What I need to do is access the asp.net Menu
controls MenuItems in a content page that are on a master page. I need to
set the Enabled state to false when the page loads and re enable it when
the page goes to the next one. Any ideas how to finish this one? Or if I
got it wrong?

//return the main menu so other pages can use it.

public Menu Menu {

get { return MainMenu; }

set { }

}

Nov 16 '07 #2
I don't think you need to accept a Menu from elsewhere ( assumes MainMenu is
contructed in this class). If you have one and return a reference to it,
then the caller of your property can do anything to your menu that they need
to do.

In short- do you NEED a "set"? If you do, then it's set {MainMenu = value;}

"Andy B" <a_*****@sbcglo bal.netwrote in message
news:eS******** ******@TK2MSFTN GP05.phx.gbl...
>I have the property below. What I need to do is access the asp.net Menu
controls MenuItems in a content page that are on a master page. I need to
set the Enabled state to false when the page loads and re enable it when
the page goes to the next one. Any ideas how to finish this one? Or if I
got it wrong?

//return the main menu so other pages can use it.

public Menu Menu {

get { return MainMenu; }

set { }

}


Nov 16 '07 #3
I found something for aspx files: <%@ MasterType
VirtualPath="Ma sterPage.master " %>. The problem is when I run it I have the
following problem: parser error: The file 'MasterPage.mas ter' doesn't exist.
My MasterPage is called Layout.master. Even when I try the virtual path as
the actual file name, it says no circular references allowed. Any ideas why
it doesnt work?

When I get it to work I should be able to do something like:
MasterPageName. MainMenu //whatever to the main menu
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote in
message news:4E******** *************** ***********@mic rosoft.com...
Andy,

Perhaps a set property isn't such a good idea? It might be a better
idea to get the menu passed to you through a method and perform your
operations through there.

Are you asking how to access the Menu in the property (through the
value keyword) or are you asking how to set all those properties on the
Menu instance?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Andy B" <a_*****@sbcglo bal.netwrote in message
news:eS******** ******@TK2MSFTN GP05.phx.gbl...
>>I have the property below. What I need to do is access the asp.net Menu
controls MenuItems in a content page that are on a master page. I need to
set the Enabled state to false when the page loads and re enable it when
the page goes to the next one. Any ideas how to finish this one? Or if I
got it wrong?

//return the main menu so other pages can use it.

public Menu Menu {

get { return MainMenu; }

set { }

}


Nov 16 '07 #4

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

Similar topics

5
6301
by: Boris Nikolaevich | last post by:
This is backwards of what I usually want--normally if you have a long-running ASP script, it's a good idea to check to see whether the client is still connected so you can cancel execution. However, I have a script that absolutely MUST finish one it's been started--is there a way to cause the entire script to execute, even if the client disconnects in the middle of the process? It doesn't matter if the script returns anything to the...
39
789
by: jabailo | last post by:
I am looping through a text file, and with each row, I launch a web service, asynchronously. Before I move on to the next step in the process, I want to make sure that all the web services have completed. How can I do this? If I were to just put a Thread.Sleep with some arbitrary number ( say 5 minutes ) would the asynch web services continue to process? Or would they
2
19581
by: Jordan S | last post by:
I have written a small Console application that executes the following line, amongst other things: System.Diagnostics.Process.Start(currentWorkingDirectory + @"\backup_files.cmd"); My Console app is NOT waiting for the execution of backup_files.cmd to finish. How can I cause my console app to wait for backup_files.cmd to finish before
11
20354
by: Peter Kirk | last post by:
Hi there I am looking at using a thread-pool, for example one written by Jon Skeet (http://www.yoda.arachsys.com/csharp/miscutil/). Can anyone tell me if this pool provides the possibility to wait for all its threads to finish? For example, if I start 20 threads: CustomThreadPool pool = new CustomThreadPool("PetersThreadPool"); ThreadMethod m = new ThreadMethod(InsertThread);
2
1837
by: yxq | last post by:
Hi When a sub-Form are loading, how to know the sub-Form has been loaded to finish(all work end)? I wrote the code ********************************************* Me.Cursor = System.Windows.Forms.Cursors.WaitCursor Private Obj-sub-Form As Form Obj-sub-Form = New sub-Form () Obj-sub-Form.MdiParent = Me Obj-sub-Form.Show()
6
3010
by: theGreatGnu | last post by:
Hi all, I am new to PHP, Apache and Mysql. But I least I have managed to install everything on my home computer on my own and everything is up and running. I can fetch data from the database and display it. So far, so good. However, I'm stuck on an irritating problem. Whenever I connect to mysql, my PHP pages don't want to finish loading. In the following example, the page will not finish loading nor display "abc" until I
4
8410
by: Dylan Parry | last post by:
Hi folks, I'm writing a program that needs to execute an external program and wait for it to finish running before it can make use of the output from that program. Specifically, the external program converts from one file format to another, and is something that I can't do natively :( So what I need to figure out is how to: a) Start the external program, with parameters
0
3810
by: mamod20 | last post by:
Please advise, I have the following example and want to know the best way to use $dbh->disconnect; and $sth->finish; -------------- $sql_host="localhost"; $sql_dataname = "database"; $sql_userid = "root"; $sql_password = "password"; &connect_sql;
1
2400
by: Craig Coope | last post by:
I may be barking up the wrong tree here (maybe I can do all this in Excel) but... I have created an Excel sheet that lets me input job start and finish times and the amount of work done within the jobs so that I can work out "total work per hour" etc....it works very well but I have to input the times and workload manually... Now is there anyway Excel or Excel linked with Access can be used so that for example, someone comes along and...
0
8683
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8611
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
9031
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
8904
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,...
0
7741
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6531
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
5867
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4372
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...
3
2007
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.