I have some ASP.NET Project Files(.aspx and .aspx.cs)in text format[textfile] in a folder i wanted to open all project files in My Visual studio how can i open? NOTE:Not like following process Select File-->openwith-->Visual studio When we craeted a website we can see 2 files[Web and Web.Debug] in project folder[physical location] What are these files?
Sandhya Bandar
Posts
-
ASP.NET Project Files -
ERROR IN Generic Collections-----------------------Program on Generic Collections---------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollectionsGENERIC { class Program { static void Main(string[] args) { List numbers = new List(); numbers.Add(1); numbers.Add(2); numbers.Add(3); foreach (int x in numbers) { Console.WriteLine("{0}", numbers); } Console.WriteLine(".............."); List str = new List(); str.Add("a"); str.Add("b"); str.Add("c"); foreach (string y in str) { Console.WriteLine(str); } Console.ReadLine(); } } } ---------------------------------------------------------------------- When i executed above Program i am getting below Error ---------------------------------------------------------------------- System.Collections.Generic.List`1[System.Int32] System.Collections.Generic.List`1[System.Int32] System.Collections.Generic.List`1[System.Int32] .............. System.Collections.Generic.List`1[System.String] System.Collections.Generic.List`1[System.String] System.Collections.Generic.List`1[System.String] --------------------------------------------------------------------------- Could anyone Tell me where i did mistake?
-
North wind Databasewhat is northwind database and how to use it?
-
VS2012Actually ive downloaded from that site only , but i.e for VS2010, do u have any idea that is there any extension for VS2012
-
VS2012problem in using , i installed but i.e is not appearing on Visual Studio NOTE:I am using Visual studio 2012, i didnt find any where that Extension for 2012
-
VS2012how to use Switch Startup Project extension in visual studio 2012
-
Which of the following methods and attributes are NOT part of the VB.NET Exception class API?Which of the following methods and attributes are NOT part of the VB.NET Exception class API?
TargetSite
StackTrace
InnerException
SourceLink
-
compileing C# program using vs2012 command prompthow to compile a C# program using vs2012 command prompt ? i wanted to compile my program(Prog name:Demo.cs) which is in this folder(C:\Pra) when i am trying to compiling my prog like this C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC>C:\Pra>csc Demo.cs i am getting an error i.e Acess is denied HOW CAN I SOLVE THIS,Please help me. Thank you
Sandhya