There are 28 guests and 0 members online. Who is online?

CodeAsp.Net, is a rich and trusted ASP.NET Community that offers valuable and powerful ASP.NET articles, blogs, forums, events, and know-how to help you increase and develop your ASP.NET software development skills - allowing you to work better and smarter. The CodeAsp.Net community is made up of a myriad of software professionals, ranging from seasoned ASP.NET developers to Architects to beginner programmers.

Featured Articles RSS Feed

Featured Articles

  • Story of two Textboxes
    1/5/2009 - This story tells the reader the difference between different types of controls and the importance of Viewstate; Author: Vivek Thakur; Section: ASP.NET;

  • Difference Between Unix and Windows Shell
    12/26/2008 - This article aims to discuss the true meaning of a shell in both Unix and Windows

  • ASP.NET Page Lifecycle
    3/11/2009 - I have tried to explain relevant events in the Page lifecycle and their importance with some gotchas. I will keep updating this article with more tips and tricks, besides readers are welcome to point out mistakes and suggest corrections and give feedback! An important thing to remember here is th...

  • The Importance of Web Design and Website Credibility
    2/3/2009 - One of the most significant functions of websites today is to provide credibility for your business. The credibility of your website is becoming more and more an increasingly important area to understand. And it's an area that many web developers and web designers fail to recognize when creating web...

  • Plugin architecture made easy
    3/10/2009 - Recently I was asked to architect a module in my organization which should identify third party CRM on the fly and plugin to the features exposed by the third party CRM through web service like loading and saving leads, contacts etc. There were several approaches proposed but to me the best suitable...

More Featured Articles

Whats New

  • How to create a Object in JavaScript
    11/18/2009
    In this blog I will explain how to create a Object in JavaScript. <html> <head> <script type="text/javascript"> var info = new Object(); info.Name = "Mohit"; info.Address = "Delhi"; info.PhNo = 100; alert("Name: " + info.Name + " Address: " + info.Address + " PhNo: " +...
  • Open a New Window in JavaScript
    11/18/2009
    In this blog I will explain how to open a new window in JavaScript. Example:- <html> <head> <script type="text/javascript"> function openWin() { window.open("http://www.google.co.in/", "newWin", "status,width=500,height=500,top=300,left=300"); } </script> &l...
  • Get Enter Key Press Event Using JavaScript
    11/17/2009
    In this blog I will explain How to get enter keypress event in JavaScript. Example:- <html> <HEAD> <SCRIPT type="text/javascript" language="javascript"> function enterHere(e) { var code = e.keyCode; if(code == 13) alert("WELCOME"); } </SCRIPT> </HEAD> ...
  • Array in Javascript
    11/17/2009
    In this blog I will explain Array in JavaScript. An array is a variable, which can hold more than one value, at a time. It is a little Database holding any given type of information, and is easily accessible. There are two ways of defining an Array.Example:- First- var myArray = new Array(); myAr...
  • How to validate minimum length in textbox by jquery
    11/17/2009
    In this blog we will see how we can validate the minimum length of textbox. <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title>Validate Textbox</title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1...
  • Recursion with common table expression
    11/14/2009
    In this blog I will discuss the magic recursion feature of common table expression. According to msdn http://msdn.microsoft.com/en-us/library/ms186243.aspx A common table expression (CTE) provides the significant advantage of being able to reference itself, thereby creating a recursive CTE. A recurs...
  • Get list of alphabets with sql
    11/14/2009
    In this blog I will discuss to how to get list of alphabets with sql. I have used  master..spt_values . Below is the script: SELECT CHAR(number) AS [ALBHABET] FROM master..spt_values WHERE [type] = 'P' AND number BETWEEN 65 and 90 --OUTPUT ALBHABET ---------- --A --B --C --D --E --F -...
  • Check uncheck items of checkbox list with jQuery
    11/14/2009
    In this blog I will discuss to check uncheck items of checkbox list with jQuery. Consider a checkbox list: <asp:CheckBoxList ID="CheckBoxList1" runat="server"> <asp:ListItem Text="Yes" Value="1"></asp:ListItem> <asp:ListItem Text="No" Value="2"></asp:ListItem> <...
  • Get selected items from checkbox list with jQuery
    11/14/2009
    In this blog I will discuss to get selected items from checkbox list with jQuery. Consider a checkbox list: <asp:CheckBoxList ID="CheckBoxList1" runat="server"> <asp:ListItem Text="Yes" Value="1"></asp:ListItem> <asp:ListItem Text="No" Value="2"></asp:ListItem> &l...
  • Convert generic list to datatable
    11/14/2009
    In this blog I will discuss how to convert generic list to datatable. Below is the method which will accept the list and will return datatable. I have used static DataTable ListToDataTable<T>(IEnumerable<T> list) { var dt = new DataTable(); foreach (var info in typeof(T).GetPrope...

More Blog Entries

.
  • Implement: Paging in Repeater or Datalist Control
    11/18/2009
    As we all knows that Repeater and DataList does not have auto paging support technique like Gridview or Datagrid, but we can achieve this through PagedDataSource. By using PagedDataSource we can implement paging in Repeater or DataList. Now in our mind t...
  • JavaScript Context Menu Control
    11/6/2009
    So this is my approach. I was working for a long time to create C# like event handlers for JavaScript classes and finally, I’ve done it. Please let me know of any bugs and suggestions to improve this context menu control.
  • Maintaining States of Selected CheckBoxes in Different Pages inside the GridView
    11/4/2009
    So this is my solution. If you have some other ideas about this functionality, please share them with me.
  • GridView Rows Navigation Using Arrow (Up/Down) Keys
    11/4/2009
    I have tried my best to make this code error free. Suggestions and criticism for further improvements of this code are most welcome.
  • Implementing Hover Delay on the GridView Rows
    11/3/2009
    So this is the approach that I've adopted to solve the Hover Delay problem. Although originally I developed Hover Delay to deactivate the click event for 1 second on a GridView row, later I also used Hover Delay to deactivate Drag n Drop of GridView rows....
  • Import data from EXCEL to SQL in ASP.NET
    11/1/2009
    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-...
  • Explanation of Regular Expressions:
    11/1/2009
    The source code shows how to use Regular Expressions in C#. The code Functions written for Validation Alphabet, AlphaNumeric, Integer, Postive Integer, Floating point numbers. You just cut copy these functions and use in any program.
  • Hover Effects for GridView Rows Using CSS
    10/28/2009
    That’s all about this technique. Just download the sample application and happy CSS! I have tested this application on various browsers and it worked fine.
  • Client-Side Validation for the CheckBoxes Inside a GridView
    10/28/2009
    This script is cross-browser compatible and fast as it iterates elements of a specific tag inside a target element [GridView] rather than iterating in a whole form. It searches the elements of a specific type in a particular column of the target element [...
  • Client Side Valiadtion On Sever Control To Insert Only Numeric Value
    10/27/2009
    This Article is used to insert a numeric value on the sever control(text box) This is a java script code for the the client side validation. On Page Load Event You can change the events in txtNoOfQuestion.Attributes.Add("onkeypress", "return numericO...

More Articles

  • PREMIUM EVENT
    Apr
    22
    The Enterprise Tech Show – A Virtual Experience Platform
    Date &Time: Wed, April 22, 2009 to Sat, April 25, 2009
    Location: , , , ,
    Posted: 4/22/2009
  • PREMIUM EVENT
    Mar
    14
    Community Tech Days - Developer Road Show
    Date &Time: Sat, March 14, 2009 to Sat, March 14, 2009
    Location: Damodar Hall, Social Service League, Dr. Ambedkar Road, Parel, , ,
    Posted: 3/9/2009
  • PREMIUM EVENT
    Mar
    07
    Secure Coding Practices
    Date &Time: Sat, March 07, 2009 to Sat, March 07, 2009
    Location: Indiranagar Club, 4th Cross, 9th Main, 2nd stage, HAL II Stage, , ,
    Posted: 2/28/2009
  • PREMIUM EVENT
    May
    07
    MVP Chat
    Date &Time: Thu, May 07, 2009 to Thu, May 07, 2009
    Location: Online, , , ,
    Posted: 1/30/2009
  • PREMIUM EVENT
    Apr
    17
    Introduction to Delegates & Events
    Date &Time: Fri, April 17, 2009 to Fri, April 17, 2009
    Location: Office, 8109, Sector D8, Vasant Kunj, , ,
    Posted: 1/30/2009
New Delhi, India
10/5/2009
Santa Clarita
10/1/2009
Anywhere
4/28/2009
Anywhere
4/28/2009

Quick Vote

Which version of ASP.NET you use the most?

   

Top Members (last 30 days)

People RSS Feed

Top Contributors

  1.   raghav_khunger
    Contributor4986 points  Contributor
  2.   vivek_iit
    Contributor3250 points  Contributor
  3.   Vinz
    Contributor3026 points  Contributor
  4.   teisenhauer
    Contributor2149 points  Contributor
  5.   Vijjendra
    Contributor2028 points  Contributor
  6.   vinay_jss
    Starter1844 points  Starter
  7.   neel
    Starter1089 points  Starter
  8.   Shaitender
    Starter928 points  Starter
  9.   SumitArora
    Starter765 points  Starter
  10.   rtpHarry
    Starter742 points  Starter

More People