i have installed visual studio 2010. But when i add a new tool bar like "layout". It all options appears disable (mean i cant select any option). Please how will i enable these options.
can Visual Studio 2008 be All-In-One tool to integrate source code continuously from team members, build, unit test?
Having used Visual Studio Team Edition 2005, unit testing each method within VS itself. I strongly believe that it is feasible to add-on tools. Example ankhsvn tool to use SVN from Visual studio [URL]
In my investigating i have come across number of tools(shown below) to use with Visual Studio 2008 professional
Development tool:- Visual Studio 2008 professional using Subversion as source control tool. Continuous Integration:- Hudson or Cruise control Build tool:- NAnt Testing:- NUnit, Selinium As Visual Studio 2008 can be used for unit testing I think NUnit is out of consideration.
In the same way i would like to have any other tools/add-ons to Visual studio to implement continuous integration, building and unit testing. This process should be automated such a way source code between team members is continuously integrated, built and unit testing is done as configured.
Objective is to use few number of tools as add-on to Visual Studio or achieve most from Visual studio itself (example unit testing). Visual Studio should be all in one tool.
I am aware that Team Foundation Server best suits my requirement, but it is out of scope due to its cost.
I'm not sure what happened, I didn't change any settings. For example, i could type the following:
a{
then hit return, and get
a {
Now though nothing happens. It's not formatting like it used to. where I can set this or switch it back? I checked Tools > Options > CSS but couldn't find anything there that fixed it.
I just can't seem to get C# code to auto-format, despite having gone over all the Formatting options for c# to make sure they are correct. For example, I want brackets to auto-format to a new line, but nothing changes. I want catch keywords to automatically go to a new line, yet they don't. The options are checked in Formatting under C#, so what gives? HTML formatting works, and prop-tab-tab works in c#, but new line formatting and such does not.
Environment : Vista,VS-2005I have converted my user controls into DLL.(This is ajax enabled Website).[URL]In another project i have added this reference , register the dll and use the Usercontrol.It is working fine.Question1 : How to add this dll into toolBox?....Question2 : How to Rename this dll?....(This is ajax enabled Website-I have added webusercontrol in this site-After publish th site i got this dll.)
Eg: user Conrol : Textbox My Dll Name =App_Web_textbox.ascx.cdcab7d2.dll; .aspx page (DLL Registration ) <%@ Register TagPrefix="WebControl" Namespace="ASP" Assembly="App_Web_pwtextbox.ascx.cdcab7d2" %>; <PhaerosWebControl:pwtextbox_ascx runat="Server" ID="pwTestDLL" />
This Code Workingfine.But i do no how to add this into ToolBox?......
Is there somewhere I can just download it? If not how can I get ahold of this tool?
Everything I've read says it's supposed to be in the [drive:]\%windir%Microsoft.NETFrameworkversion folder. So on my computer I went to: C:Program Files (x86)Microsoft.NET and there is no Framework folder there. I've search my computer and it just isnt' there.
I'm on Win 7, VS 2008 and SQL Express 2008.
I did find one forum post where a guy was having the exact same problem in Vista, and he said this post: http://blogs.msdn.com/astebner/archive/2008/05/27/8555723.aspx answered his question. Unfortunately this doesn't help me. (For solution 1 I downloaded and installed .NET Framework 3.5 redistributable package but that didn't do anything at all and as for solution 2, I'm not on Vista and my Win 7 is all up to date.)
I installed the Visual Web Developer 2008 Express on my Windows XP, I also install the SP1. But somehow all the tool box items in the ToolBox are grayed out and I cannot access them,
I am running Visual Studio 2008. I cannot get the auto format to work on the source code of my aspx page. I have tried it from the edit menu and the ctrl K, D. Nothing works. If I manually fix everything, the next time I open the file the formatting is gone. Here is a sample of what it looks like:
I have been facing a problem in implementing AJAX control tool kit.Currently am using visual studio 2005 for development, downloaded the ajax control toolkot from the follwoing URL. Downloaded the toolkit from [URL]As instructed in the page, if we add the solution file to the project and when we proceed to build the solution, landing in the follwoing error " The type or namespace name 'Script' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)" Unable to add a reference System.Web.Script.
My Visual Studio is in english but ASP.NET Configuration Tool runs in the os language because I don't work in an english country. How to configure it into english language if possible ?
I am running VS2010 and trying to make the asp.net configuration tool to work. The problem is: when I click on in in the menu, the server goes up but nothing happens.
If I type the url (localhost:port) in the browser, I get the following error: Server Error in '/asp.netwebadminfiles' Application. HTTP Error 404 - Not Found.
and if I copy and paste the /asp.netwebadminfiles to the url (localhost:port/asp.netwebadminfiles), the page loads with the following message:
I am lookinf for a Unit testing Tool for asp.net web application. i intended to use visual studio 2008 web test. Please tell me where can i get nice tutorials to start up on this tool. and also suggest me is any other web testing tools out there.
I have downloaded all the required setup to use windows application. I am using vs 2008, already downloaded Windows Mobile 6 Professional SDK Refresh, Windows Mobile 6 Standard SDK Refresh. its buliding and deploying successfully. But I am not able to place tools, because there are no tool in toolbox. What i should do to see the tools in tool box.
I am walked by Scott Hanselman's book through how to create NerdDinner MVC application.To validate the entity type Dinner that is generated by Entity Data Model Wizard, he extended the entity Dinner first by using partial class trick and then made a buddy class to be associated with Dinner.
namespace NerdDinner.Models { [MetadataType(typeof(DinnerValidation))] public partial class Dinner { } public class DinnerValidation { Required(ErrorMessage = "Title is required")] [StringLength(50, ErrorMessage = "Title may not be longer than 50 characters")] public string Title { get; set; } [Required(ErrorMessage = "Description is required")] [code]...