Categories
Technology - Tips

How to Disable Ctrl-ALT-DEL Logon Prompt in Windows Server 2003

How to Disable Ctrl-ALT-DEL Logon Prompt in Windows Server 2003 This security setting implements CTRL+ALT+DEL is required before log on.This policy is already enabled on a computer running windows server 2003, a user required to press CTRL+ALT+DEL to log on. To disable this setting you have to do following steps:- 1. Click on Start >Go […]

Categories
How To Article Technology - Tips

How to Run Setup in Compatibility in Windows

How to Run Setup in Compatibility in Windows Program Compatibility Mode: Program compatibility in Windows let you run programs written for earlier versions of Windows. Like programs that are written for Windows Vista also work in Windows 7, but some older programs that build for windows XP or Windows 98 might run with errors or […]

Categories
Asp, Asp.net

How to Create Database Connection in Asp.Net

How to Create Database Connection in Asp.Net To make dynamic website,portals and online application, we require database (SQL Server,Access,MySQL,Oracle) etc. To create a database connection in asp.net follow the following steps:- 1. By using Web.config:- (i) Go to your web.config file and then locate the <connectionStrings/>. Change it like this:- <connectionStrings> <add name="con" connectionString="Data Source=.; Initial […]

Categories
Sql Server

INSERT Trigger in Sql Server

INSERT Trigger Works Sql Server INSERT TRIGGER is a trigger that execute itself whenever an INSERT statement inserts data into any table or view on which the trigger was configured. When an INSERT trigger fires itself, new rows are also added on both the trigger table and inserted table. The inserted table is a logical table […]