Deploy ASP .NET MVC application using LocalDB to local IIS

|
When ASP application is published to IIS using LocalDB accessing the database may result in the following error:

Server Error in '/Application_Name' Application.A network-related or instance-specific error occurred while establishing a connection to SQL Server.

Introduction to Widows Forms and Visual Studio IDE

Visual Studio .NET provides a user-friendly graphic designer for building user interfaces. With it, within a few minutes, a user interface design can be built, whether it's a Windows Forms window, a Web page, or a mobile application interface
CompilationWhen compiling, VS.NET automatically creates the required assemblies and resource files.
| | | | |
2017/10/05 05:45

Introduction to .NET Framework, C# (C Sharp) and Windows Forms

Microsoft .NET Framework

Microsoft .NET Framework is technology for building and running .NET applications. It provides a standard library of classes and a run-time environment called Common Language Runtime (CLR).CLR is the foundation of the .NET Framework. It manages code at execution time, memory management, thread management, remoting.
| | | | |
2017/10/05 03:59

c# combobox fill from database

To get only the unique /distinct/ data table records from any database connected to DataSet in C# project and to put them inside combobox.Fill the table adapter with the records from database.
this.myDBTable_TableAdapter.Fill(this.myDB_DataSet.myDBTable);
Create a view containing the database table
DataView view = new DataView(this.myDB_DataSet.myDBTable);

Copy only the distinct records to new data table.
|
2017/10/05 03:18

Get latest date record - SQL query

To return the latest record (one record only) from data base table where one of the fields is in Date/Time format:
SELECT TOP 1 * FROM table_name ORDER BY date_time_column_name DESC
Notes:
|
2017/10/05 03:02

c# combobox set selected item by item's text

C# Combobox defined with name my_combobox
private System.Windows.Forms.ComboBox my_combobox;

Define string variable with the text of the combobox item that has to be selected. For example, if the combobox items have text values "item_a" "item_b" "item_c" ... and the item which text is "item_b" has to be selected
| |
2017/10/05 02:52

C# - Get database connection string from Web.config file


To get the database connection string from IIS Web.config file using C# code, include System.Configuration directive and then create a string variable to assign the connection string like this:
using System.Configuration;
string connStr = ConfigurationManager.
                  ConnectionStrings["connectionString_Name"].ConnectionString;
If “ConfigurationManager” is not recognized you will need to add reference to: "System.Configuration".See: C# - How to add reference to project


| |
2017/10/05 02:45

C# Textbox - enter only positive numbers on KeyPress event in Windows form application


To prevent users from entering incorrect data in Windows form application, set restriction to allow only specific characters to be entered in the text box.This example uses KeyPress event to monitor the users input and to apply the restriction required.To avoid code duplication in Windows multiform applications for example, a separate class file is created “CommonFunctions.cs”.
The function to allow only numbers in textbox control is named InputNumbers.
For each Windows form, create a single KeyPress event and call the InputNumbers function inside it.
| |
2017/10/05 02:27

c# passing data between forms

C# project with two forms
public partial class Form1 : Form // this is the main form

public partial class Form2 : Form // this is the second form
To pass variables (values, data) from Form1 to Form2
Case: public variables in Form2
public string input_variable; // put this in Form2 as global variable

public string output_variable; // put this in Form2 as global variable

in Form1 inside the function that run (call) Form2
|
2017/10/05 02:07