How to Connect to Xampp from Visual Studio

Method 1: Install MySql connector Install MySQL for visual studio Packages can be found at : https://dev.mysql.com/downloads/ Resource : https://stackoverflow.com/questions/55670070/how-to-connect-to-a-mysql-data-source-in-visual-studio-2019 Method 2: Install MySQL.data by oracle Resource: https://stackoverflow.com/questions/21618015/how-to-connect-to-mysql-database

Continue ReadingHow to Connect to Xampp from Visual Studio

MVC, IIS, CSS, Notes

MVC (section 1)   TempData Usage TempData : https://stackoverflow.com/questions/21454232/asp-net-mvc-how-to-pass-full-model-from-view-to-controller Using the code below you can send data back and forth from controller to view and view to controller. TempData["savedControl"] = "Successful";…

Continue ReadingMVC, IIS, CSS, Notes

MVC Razor Form Code

Build form and submit Single form on page @using (Html.BeginForm()) { @Html.Label("Last Udated") @Html.TextBoxFor(m => m.LastUpdated) <input type="submit" value="Upload" /> }   Multiple forms @using (Html.BeginForm("Upload", "Upload", FormMethod.Post, new {…

Continue ReadingMVC Razor Form Code

End of content

No more pages to load