Loading ...
home
browse
articles
blogs
events
forums
jobs
people
wiki
Login
Register
×
Choose a location:
home
articles
forums
blogs
jobs
events
wiki
people
home
»
search results
Search
Search
Filter by space
-- View all
Top level community
SEARCH FILTERS
All results
Discussions
Articles
Blogs
Events
Wiki
Videos
CMS Pages
People
3019 results found
ASP.NET : How to open an alert box from user control
?
Author:
mohit kumar
· Created: 10/27/2010
tags :
ASP.NET: How to open alert box from codebehind or server side
Author:
Raghav Khunger
· Created: 7/3/2010
tags :
Alert Box From ASPX Code-Behind Code
Alert Box From ASPX Code-Behind Code
Author:
mohit kumar
· Created: 1/20/2010
tags :
ASP.NET: How to open confirm box from codebehind or server side
Author:
Raghav Khunger
· Created: 6/27/2010
tags :
Javascript Alert Box
Author:
mohit kumar
· Created: 10/29/2009
tags :
How to prevent user to lose the data on page unload
In this article I will explain you how to prevent user data to lose when he accidentally click refresh or click the back browser button or click close button of browser ,or any task which leads to lose his or her data. And also we want that there should be provision that this condition should not be checked on Submit button as we already have some
Author:
Raghav Khunger
· Created: 7/14/2009
tags :
ASP.NET Page Life Cycle
In this article ASP.NET Page Life cycle is explained.Various Stages starting from initialization to unload of a pages is covered in this section.
Author:
Raghav Khunger
· Created: 6/18/2009
tags :
Using jqGrid with ASP.NET
In this article I will explain how to use jqGrid with ASP.NET. jqGrid is one of the most popular jquery grid and it is one of the best grid component. With the help of jqGrid wecan represent and manipulate tabular data for representing and manipulating tabular data . The grid is Ajax enabled JavaScript control and data is fetched to the grid via A
Author:
Raghav Khunger
· Created: 1/23/2011
tags :
Re: How to call confirm modal from codebehind
Here is the sample: using System; using System.Web.UI; using System.Text; /// <summary> /// /// </summary> public partial class _Default : Page { #region Private Properties bool _isConfirmNeeded = true; string _confirmMessage = string.Empty; #...
Author:
Raghav Khunger
· Created: 3/9/2010
tags :
Import data from EXCEL to SQL in ASP.NET
In this article I will explain how to import data from EXCEL to SQL in ASP.NET . In many situations we have data in the form of excel sheet but we have the requirement to have that data in SQL SERVER DB. I have explained importing data both from Excel 97-2003 as well as Excel 2007 format.
Author:
Raghav Khunger
· Created: 11/1/2009
tags :
How to ask questions on forums
Welcome to CodeASP.NET! Below are some of the tips which you can follow while posting questions on CodeASP.NET forums: Be specific Asking unclear questions won't help. If you are going to ask unclear question there may be more probability of receiving the...
Author:
Raghav Khunger
· Created: 7/8/2011
tags :
ASP.NET MVC Framework Tutorial
The Model View Controller (MVC) is a buzzword in the ASP.NET community, thanks to the upcoming ASP.NET MVC Framework that Microsoft has launched recently. The Framework allows easier adoption of the different MVC patterns in our web applications. In this article we will discuss ASP.NET MVC Framework in detail with the help of a Sample Project. We a
Author:
Vivek Thakur
· Created: 2/5/2009
tags :
Calling web service using jQuery in ASP.NET
In this article I will show how to call ASP.NET webservice using jQuery. Webservice call using jQuery will let you to prevent the re-rendering the entire content of the page. The request is made partially and you can replace the content of the page without postback. Thus increasing usability and leads to less data transfer for the same cause
Author:
Raghav Khunger
· Created: 11/21/2010
tags :
How to integrate Cute Chat Web Messenger in ASP.Net Application.
In this article you will get to know about how to integrate Cute Chat Web Messenger with Asp.net application.
Author:
Sumit Arora
· Created: 6/4/2010
tags :
jQuery Mobile Login Dialog Box
If you've been following my posts so far, you should have a good overview of jQuery Mobile, it's documentation, how to set up your Visual Studio environment, and the structure of a jQuery Mobile page. Today, I'm going to quickly show you how to create a jQuery Mobile Login dialog box. Since many applications require a login, it's g
Author:
Tim Eisenhauer
· Created: 11/17/2010
tags :
Globalization and localization demystified in ASP.NET 2.0
This article explains how to globalize an ASP.NET 2.0 website, step by step, with a practical example.
Author:
Vivek Thakur
· Created: 3/16/2009
tags :
ASP.NET Horizontal Menu Control
An article on how to put together ASP.NET horizontal Menu control with access key and target window support
Author:
Bryian Tan
· Created: 8/19/2010
tags :
How to open jQuery UI Dialog from codebehind
In this blog I will show how to open jQuery UI Dialog from codebehind. I saw this question asked on the forums. I decided to write a quick blog on it.
Author:
Raghav Khunger
· Created: 1/27/2011
tags :
Check username availability using jQuery and ASP.NET
In this article I will show how to check username with jQuery and ASP.NET. This will let the users know if a particular username is available or not during the process when they are filling out the registration form. In tradtional way if you are going with normal postback , that will irritates the user as the passowrds fields would become empty on
Author:
Raghav Khunger
· Created: 1/14/2011
tags :
How to get readonly textbox value in codebehind file
In this article I will explain how to get readonly textbox value in codebehind file. I am writing this article to resolve these issues: • ASP.NET Ready Only TextBox lose client side changes, values across post back? • Why Readonly Text box values are empty in code behind ? • Issue in Retrieving textbox value when readonly = true in code
Author:
Raghav Khunger
· Created: 9/17/2009
tags :
ASP.NET Viewstate and ControlState
This article gives a brief introduction on ViewState and Control State in ASP.NET, and also focuses on some of the tricky issues with both.
Author:
Vivek Thakur
· Created: 3/19/2009
tags :
Force user to select multiple dropdownlists with jQuery
Yesterday my teammate had a requirement to show alert to user if he has not selected the option from the dropdown. He had multiple dropdown list contr
Author:
Raghav Khunger
· Created: 3/25/2010
tags :
How to use log4net in ASP.NET
The Apache log4net library is a means to help the programmers output assertions or logs to a variety of output targets. It is very helpful in the cases where you are facing problems with an application and want to log statements to locate the problem. The statements are logged with the help og log4Net during the runtime of the program.
Author:
Raghav Khunger
· Created: 9/10/2011
tags :
Using jQuery Autocomplete in ASP.NET
In this article I will show how to use jQuery Autcomplete in ASP.NET application. Autocomplete is one of the most needed feature while making applications where user demands the auto predicting feature when he types something in the input textbox.
Author:
Raghav Khunger
· Created: 10/31/2010
tags :
Reorder list using jQuery and ASP.NET
In this article I will explain how to reorder list using jQuery and ASP.NET and the saving the item's updated order in the database. The advantage of reordering list with jQuery is that it is light weight, saving of bandwidth and good from user prespective. I have used jQuery UI Sortable List to sort the items. The changes are persisted to database
Author:
Raghav Khunger
· Created: 1/21/2011
tags :
Page 1 of 121 (3019 items)
« Previous
1
2
3
4
5
6
7
8
9
10
11
Next »
Go to page:
[Go]
×
Loading ...