How to Connect SQLSERVER database through C# By Mallikarjun A 15:37:00 Add Comment C# code: SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["sqlcon"].ToString()); cn.Open(); we... Read More
Simple calculator using C# By Mallikarjun A 15:36:00 1 Comment <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Calculater.aspx.cs" Inherits="Calculater... Read More
Visual Studio 2008, 2010, 2011, 2012 Keyboard Shortcuts Keys By Mallikarjun A 12:50:00 Add Comment General shortcut Keys Shortcut Description Ctrl-S Saves the current selected file Ctrl-Y ... Read More
ASP.NET Validation Controls By Mallikarjun A 23:20:00 Add Comment 1.RequiredFieldValidation Control 2.RangeValidator Control 3.RegularExpressionValidator Control 4.CompareValidator Control 5.Custo... Read More
Turn off Asp.net Custom Errors in Web.config By Mallikarjun A 23:18:00 Add Comment Off Mode This mode is responsible for displaying error message on local and remote server in case of an error. On Mode This mode is r... Read More
Turn off Asp.net Custom Errors in Web.config By Mallikarjun A 15:35:00 Add Comment Off Mode This mode is responsible for displaying error message on local and remote server in case of an error. On Mode This mode is respons... Read More
Create your own NotePad using C# By Mallikarjun A 15:34:00 Add Comment Create New project ---> Drag and Drop following tools in Form.. menustrip saveFileDialog openFileDialog fontDialog printDialog printpre... Read More