Categories
Sql Server

How to kill All Running Processes in SQL Server

How to kill All Running Processes in SQL Server In this post we will discuss How to kill All Running Processes in SQL Server. we do have solution by killing the running process to take a lock and perform any activity using a management command namely KILL & a system view sys.sysprocesses. However, what encourages me to write this solution […]

Categories
Asp, Asp.net

How to Compare Two Calender Extender In Asp.Net

How to Compare Two Calender Extender In Asp.Net In this tutorial we will learn How to Compare Two Calender Extender In Asp.Net. Here we compare two dates in asp.net using two textbox controls and two ajax calender extender controls. You can use asp.net calender controls instead of ajax calender extender controls but date formats must be same for […]

Categories
Asp, Asp.net

How to Get Client Computer IP Address in ASP.Net

How to Get Client Computer IP Address in ASP.Net In this tutorial we will learn How to Get Client Computer IP Address in ASP.Net. Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>How to Get Client Computer IP Address and Hostname in ASP.Net</title> <style type="text/css"> body { width: 980px; margin: […]

Categories
Asp, Asp.net Javascript Website Design

Image Preview Before Upload Using jQuery

Image Preview Before Upload Using jQuery In this tutorial we will learn how to show Image Preview Before Upload Using jQuery. Here we are using jQuery to accomplish this. Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Image Preview Before Upload Using jQuery</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script> <script type="text/javascript"> function showimagepreview(input) […]