Microsoft
Software
Hardware
Network
Question : 'string' does not contain a definition for 'Controls' and no extension method 'Controls' accepting a first argument of type 'string' could be found
after converting my project in VS 2008, I get an error when trying to add the literal control PageTitle
Error 1 'string' does not contain a definition for 'Controls' and no extension method 'Controls' accepting a first argument of type 'string' could be found (are you missing a using directive or an assembly reference?)
Code Snippet:
1:
this.Title.Controls.Add(new LiteralControl(this.PageTitle));
Open in New Window
Select All
Answer : 'string' does not contain a definition for 'Controls' and no extension method 'Controls' accepting a first argument of type 'string' could be found
Is this a VS 2003 project that you are converting?
In framework 2.0 (VS 2005), the Title property was added to the Page class. I assume that you had an element in the page with the Id "Title"? If so, that control is not reachable by that name any more.
If you want to set the title of the page, use the Title property:
this.Title = this.PageTitle;
If you are using the element for something else, you have to assign a different Id to it so that you can reach it.
Random Solutions
Remote Web Workplace does not work outside the LAN
How do I set up Exchange 2007 Activesync to work with PDAs that can sync to Exchange Server
Add a field name to text input
Push mail on SBS2008 problem
creating variables out of column items
Illegal operation
What is the difference between "SET ROWCOUNT" and "TOP" clause in SQL ?
Net Time reporting wrong time to workstations.
Really Uninstall previous versions of Microsoft Office if I like to try Office 2010?
Storing a web page's data stream in a string