How To Use Alter Command In SQL SERVER
10:05 AM | Comments (0)
Adding a Primary Key Constraint on Column ALTER TABLE employee ADD CONSTRAINT emp_id_pk PRIMARY KEY(emp_id) Increasing the width of a column...
How to set c# variable value in javascript
10:00 AM | Comments (0)
Here is the our aspx page that contains a JavaScript method and a hidden filed and button. <script type="text/javascript"> function SetValue()...
How to send mail by using System.Net.Mail?
9:52 AM | Comments (0)
using System; using System.Net.Mail; using System.Net.Security; public partial class SendEmailPage : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) {...
How to detect mobile and tablet devices in C#?
9:47 AM | Comments (0)
using System; using System.Web; using System.Web.UI; public partial class GetDeviceType : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) {...