drop all foreign key constraints in a database Using below code you can esaly remove all foreign-key constraints of tables. SELECT ‘IF EXISTS (SELECT *... Read More
Mahesh Javiya
Insert Statement Script Generator Procedure
2 min read
Insert statement generator for database CREATE PROC [dbo].[InsertGenerator] (@tableName varchar(100)) as –Declare a cursor to retrieve column specific information for the specified table DECLARE cursCol... Read More
Back Button Problem After Logout in ASP.NET
1 min read
I was facing a problem during one of my project. Actually, I was developing an E-Commerce site, in which I need to give login and... Read More
Crop Image in ASP.NET using JCrop, JQuery
1 min read
Crop Image in ASP.NET using JCrop, JQuery 1. First include the following file into your project jquery.Jcrop.js jquery.Jcrop.min.js jquery.min.js or you can directly drag and... Read More
Google Map with Multiple Markers
1 min read
Google Map with Multiple Markers Place the below script in head tag <script type=”text/javascript” src=”http://maps.google.com/maps/api/js?sensor=false”> </script> Place The below Code in body tag <div id=”map”... Read More
Generate Http post Request From sql server
1 min read
Generate Http post Request From sql server CREATE procedure HTTP_POST( @sUrl varchar(200), @response varchar(8000) out) As Declare @obj int ,@ hr int ,@status int ,... Read More
Using Ajax Call Keep session Alive
1 min read
Using Ajax Call Keep session Alive Use Below javascript to keep session alive in master page<script type=”text/javascript”> setInterval(‘pingSession()’, 50000); var jqping = jQuery.noConflict(); function pingSession()... Read More
Trick To clear Catch Images
1 min read
Trick To clear Catch Images Easy way to add Query string in a Image Url to generate new request url. so browser not get image... Read More
100 Asp.net Interview Questions and Answers
46 min read
What is the practical difference between store procedure and function??? Please Explain it in detail technically….??? Store Procedure Function 1)Store Procedure takes input, output parameters.... Read More
Detect Browser Javascript Is enable or not
1 min read
Add In Master Pages In a Header Tag <noscript> <meta http-equiv=”refresh” content=”0; url=/noscripts.html”/> </noscript>... Read More
