Posts

Angular Application

Image
 Successfully executed First Angular Application It was very interested and exited to do the APP.. Through Command Prompt Through Package Manager Console: We can run the app through PMC also. ng serve command reflected in PMC.

Views with and Without Layout

Image
 View Without layout Created using layout Design

Created MVC Application with Entity Framework

Image
 MVC App using Model First with Entity Framework Table data Details pane Index page of My Controller

Adding Different Layers in Web Application

Image
1. WCF -Data Access Layer 2.  DLL-Business Logic 3. App-Application Layer Add Service in Class Library Add DLL in App File Run the App to show the output.
Image
 

Different Formats on Console.Writeline

   Simple Way   Console.WriteLine("Hello " + Name + "," + currentDate + "Welcome to our Online Voting Portal. Your Voter Id And Other Details." +                 "Plz Verify." + Voterid + "," + state + "," + city + "," + panchayat);      Standard Way Console.WriteLine($"{Environment.NewLine}Hello,{Name},Welcome to our Online Voting Portal. Your Voter Id And Other Details.  Plz Verify, {Voterid },{ state} ,{city}, { panchayat}");