Skip to main content

Getting Started With ASP.NET MVC First Application


Requirements: Visual Studio (i am using VS 2017 for demo)


  1. Open up the visual studio and Click File -> New ->Project 
  2. Click Visual C# -> Asp.Net Web Application (.NET Framework)                                              In the Name i.e Project Name and Solution give the name as required here I have given      Name: WebApp                                                                                                                              Solution Name: StudentInformation
  3. Select MVC and then click OK
  4. The application will open with the following view
  5. Run the application from the menu bar or can press F5 or CTRL+F5 
The first ASP.NET MVC Application is up and running in your web browser. It opens the applications home page and opens in the web browser with localhost:port . Visual studio assigns the random port number and hence the port number you see differs.



Comments

  1. The main motive of the Google Cloud Big Data Services is to spread the knowledge so that they can give more big data engineers to the world.

    ReplyDelete

Post a Comment

Popular posts from this blog

Using SqlDataAdapter to fill DataTable in c#

public DataTable List(string sql)         {             SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString);             SqlCommand cmd = new SqlCommand(sql, con);             DataTable dt = new DataTable();             SqlDataAdapter da = new SqlDataAdapter(cmd);             try             {                              con.Open();                 da.Fill(dt);             }             finally             {                 con.Close();          ...

Converting List to DataTable in C#

public static DataTable ConvertToDataTable<T>(IList<T> data)         {             PropertyDescriptorCollection properties =                TypeDescriptor.GetProperties(typeof(T));             DataTable table = new DataTable();             foreach (PropertyDescriptor prop in properties)                 table.Columns.Add(prop.Name, Nullable.GetUnderlyingType(prop.PropertyType) ?? prop.PropertyType);             foreach (T item in data)             {                 DataRow row = table.NewRow();                 foreach (PropertyDescriptor prop in properties)                     row[prop.Name]...