Visual Studio :: Error List Panel Won't Display
Nov 5, 2010
If I build my project and there are errors, the build fails, and for the last 4 years I've been using Visual Studio the error list panel has always popped up showing why the build failed. Now, the tab for the error list panel is visible at the bottom of my screen, but grayed out, so I can't click on it. This started happening yesterday. I've tried rebooting, the project build is set to Debug, and in the Tools/Options/Projects and Solutions menu, "Always show Error List if build finishes with errors" is checked.
View 2 Replies
Similar Messages:
Oct 22, 2010
I lost my error list window and I can't get it back even when ctrl-w, ctrl-E is invoked or from the menu.
View 2 Replies
Feb 8, 2010
I'm having a class with these code
[Code]....
and I'm accesing this class from ASP.Net
[Code]....
when opening Default2.aspx
[Code]....
there is a just warning from Visual Studio.Net 2005 like this :
[Code]....
I want this warning message disappear from my error list.
View 1 Replies
Mar 9, 2010
Visual Studio 2010 Beta 2 locked up, and when I tried to restart it, it wouldn't load, so I did a devenv.exe /resetuserdata to get it going again. It reset everyhing in my options of the web app/ etc, and now some AJAX conrols don't work such as dragpanel. I assume that it is because something got reset that I haven't enabled again, but can't figure it out.
View 2 Replies
Dec 13, 2010
I am building master page in visual studio 2005 and I have placed contentplaceholder into between <head> and </head> tag of master page, but in source view of visual studio 2005, I am getting error that says "unrecognized tag prefix or device filter" how do i get rid of this error or is this bug in visual studio 2005
View 2 Replies
Apr 29, 2010
I am having an issue in VS 2010 trying to get even the default ASP.NET Web Application to run in Debug mode. I get the error:
"Unable to start program 'http://localhost:1443/Default.aspx'.
The system cannot find the file specified."
I am stumped here and cannot find anything out there with this error.
View 4 Replies
Jan 13, 2010
Is there any way that I can get the list of All the available shortcut key options listed from within IDE itself in Visual Studio 2008/2010? Because every time I used to bing and find on web for that.
View 5 Replies
Oct 31, 2010
I am getting the following error when I try to establish ftp remote connection using the 'copy web site' feature on visual studio 2005.
unable to open the web 'ftp://209.*.*.*/httpdocs'. The computer is disconnected from the network.
Why can't I connect to the remote site on visual studio 2005? I can do the same thing on Dreamweaver with no problem. I can ping the IP successfully. I can open the ftp URL on a web browser with no problem.
View 1 Replies
Jan 17, 2010
When using Visual Web Developer Express there seems to be an issue when trying to insert a DDL into the Wizard. If I create a Wizard, and then insert a DDL inside the wizard, the source shows, correctly,
...
<asp:WizardStep runat="server" title="Step 1"> <asp:DropDownList ID="DropDownList1" runat="server"> </asp:DropDownList> </asp:WizardStep>
...
However, if I return to the Design view and use the Smart Tasks button to 'Edit Items', although I can complete the relevant details in the 'ListItem Collection Editor' they are not transferred to the source. If I use exactly the same procedure on a DDL outside the Wizard everything functions correctly.
View 3 Replies
Feb 14, 2011
Net Framework 2.0 Net Framework 3.5 and when I use ajax, butlater when I use add-I add objects to be added soon. Why can not I add the Net Framework 2.0, also doing a mistake somewhere.
View 1 Replies
Jan 26, 2010
I added a panel with ModalPopupExtender in a web form. Opening this form at Visual Web Developer 2008 Express, only seen ModalPopupExtender, not seen the panel. At Soure, all panel code exists. Why not shown?
View 13 Replies
Mar 9, 2010
I have upgraded to VS2010 recently. Now VS2010 is not opening i get an messg box displaying. Microsoft Visual Studio has encountered a problem and needs to close. We are sorry for the inconvenience. It automatically gets restarted and displays the same message. I have re-installed VS more than 3 times.
View 1 Replies
Oct 27, 2010
how to restore Visual Studio (2008) panel placement positions (e.g. Solution Explorer, Watch Window, etc)? Something screwy happened on mine, and when I started debugging it opened and de-attached every panel in the application in looks like.
View 1 Replies
Aug 2, 2010
I have a panel on a form with textboxes on. How can I make this invisible while editing the form in 2008express? I want to add another panel on top and be able to add stuff to it without the other getting in the way.
View 2 Replies
Aug 14, 2010
is it possible to convert whole visual studio 2008 web site project to visual studio 2010 web site project
my current project references
i have a very annoying iis problem
iis server stops working until app pool is recycled
i am hoping that new visual studio (net framework 4.0) may solve this very annoying unsolveable problem
View 2 Replies
Aug 18, 2010
How can we add Script manager and update panel in asp.net in visual studio 2010.
View 3 Replies
Jun 9, 2010
I have a website on visual studio 2008 on my local machine. When I run through the debugger I get the following error, however when I browse the same website through the IIS manager (running IIS7.5), I can browse it. What do I need to fix to run it through debugger? The website is set as an application.
Error:
Configuration Error
Description:
An error occurred during the processing of a configuration file required to service this request. review the specific error details below and modify your configuration file appropriately.
[Code]....
View 2 Replies
Apr 12, 2010
I have just installed IIS manager version 6.1 build 7600 and visual studio 2010 (latest additions of both).
I have followed all the instructions and given the correct permisions ect for IIS to work with my directory. I have a helloworld website that has worked via the localhost server many times, but almost hourly something happens to the settings in IIS and it starts throwing errors.
The current error copied below. Basically I am wondering a few things...
1. Why does my IIS constantly do something so that it works one minute and then it wont the next (this is with an identical helloworld.htm file so I know it is not something I am doing with the file that is messing it up).
HTTP Error 500.0 - Internal Server Error
Calling LoadLibraryEx on ISAPI filter "C:WindowsMicrosoft.NETFrameworkv4.0.30128aspnet_filter.dll" failed
Module
IIS Web Core [code]......
View 6 Replies
Jan 26, 2011
I am using VWD express 2005. I have a drop down list that filters a datagrid. I use select distinct to populate the DDL and the datagrid is filtered using
SELECT * FROM tbl3 WHERE (REP LIKE @rep + '%')
However I want to add an entry to the DDL that includes more than 1 value. If I add a new listitem to DDL with text = sales and value = c21 then query is ok but what I'm trying to do is is where value = c21,c22 A sort of group option? Am I going about this the wrong way? I tried value = c21,c22 then c21 or c22 then (c21,c22)
View 2 Replies
Jan 28, 2010
I'm developing ASP.net project with C# using vs visual-studio-2008. when I drag drop asp control from tool box to the design view then I go to the code behind I should see the control in pop up object list. at the begin I had no problem but not when I drag and drop any new control I can not see it and even if I write it manually when give me an error this this name not exist.
View 1 Replies
May 21, 2010
Anyone know if I can maintain a VS 2008 (.net 3.5) project by using the VS 2010 IDE ?
View 1 Replies
Jan 26, 2010
When I run a web program from visual studio .net 2008 then it output is displayed in Mozilla Firefox and a error is appear 'page load error, try again'. If I copy the url and paste it to the Internet explorer then it runs. How can I recover this problem and set Internet explorer as default browser for Visual studio .net 2008
View 3 Replies
Oct 23, 2010
I'm running VWD 2009 version 9.0.30729.1 SP. I tried to remove a coupldof the items in the Recent Projects list that comes up on the Start Page by deleting them from
HKEY_CURRENT_USERSoftwareMicrosoftVWDExpress9.0ProjectMRUList in the Registry. But now nothing shows up in the Recent Projects list of the Start Page except for the text below:
Open: Web Site... | Project
Create: Web Site....| Project
I've used RegEdit many times and am sure I didn't do anything stupid. I just selected a couple of values under the key and deleted them. Does anyone know what might be going on?
View 2 Replies
Aug 3, 2010
When I press F5 (debug) in Visual Studio 2010 Express, I get the following error message:
Unable to start debugging on the web server. IIS does not list a web site that matches the launched URL.
This happens only when I am trying to make use of the option "Use custom server".
I got both the host file and the IIS bindings set up. The server that I specified is working in the browser.
View 3 Replies
Jan 28, 2010
I've taken over an ASP.NET project and the previous dev used "dynamic" DSNs sprinkled throughout the application. These data sources are databound to several controls throughout the site.I'd prefer to use a system DSN that I would define on my dev machine and the production web server. This way if I need to change the location of the SQL database I can just change the system DSN on the server instead of modifying the code and recompiling the application in Visual Studio.What is the easiest way to list all these dynamic DSNs that are in use in this web site project in Visual Studio 2008 and modify them to use a system DSN instead?
View 1 Replies