Knowledge Base

How to Upload Image Files without Refreshing Page using jquery

Below is the code for Uploading image without  Refreshing Page using jquery:- ———————- <head runat=”server”> <title></title> <script type=”text/javascript” src=”http://code.jquery.com/jquery-1.8.2.js”></script> <script type=”text/javascript”> function ShowpImagePreview(input) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $(‘#ImgPrv’).attr(‘src’,

Read More

How to Google Analytic Download File Tracking?

I create a field called Downloads and attached the code to the download completed event and incremented the download number every time the file was downloaded, I have attached a video of the behavior. You can utilize the following code

Read More

Client ID change in run time with diffrent framwork version in Asp .Net

  when we convert web-application to version 2.0 to 4.0 at that time we need to change the line in web.config file like <compilation debug=”true” targetFramework=”4.0″> Because if our application with version 4.0 in IIS and your web.config file value

Read More

Why old version of Asp.net Application not working in Newer Visual Studio ?

We had older version asp.net application that was developed in Visual Studio 2005. The Application was not working in higher version of Visual Studio like Visual Studio 2008 and 2010. The project and the entire application got hanged when we

Read More