 kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: Maintaining Checkbox state in Datagrid with paging
                                        http://kannanmm.blogspot.com/2005/04/maintaining-checkbox-state-in-datagrid.html
                                        A place for knowledge sharing. Monday, April 18, 2005. Maintaining Checkbox state in Datagrid with paging. We can achieve it with JavaScript, and hidden variable. Whenever on click of the checkbox, we call a javascript function passing ‘this’ as parameter, so that we know which checkbox we are checking. Anyway, for each checkbox, we must be having a unique PK or some value. The logic is like this,. Input type="hidden" id="hdnField" name=" hdnField value="[%=Request.Form("hdnField")%]"]. 
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: April 2005
                                        http://kannanmm.blogspot.com/2005_04_01_archive.html
                                        A place for knowledge sharing. Monday, April 18, 2005. Maintaining Checkbox state in Datagrid with paging. We can achieve it with JavaScript, and hidden variable. Whenever on click of the checkbox, we call a javascript function passing ‘this’ as parameter, so that we know which checkbox we are checking. Anyway, for each checkbox, we must be having a unique PK or some value. The logic is like this,. Input type="hidden" id="hdnField" name=" hdnField value="[%=Request.Form("hdnField")%]"]. 
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: Converting Class Array to DataTable
                                        http://kannanmm.blogspot.com/2005/08/converting-class-array-to-datatable.html
                                        A place for knowledge sharing. Monday, August 29, 2005. Converting Class Array to DataTable. Private DataTable dtTemp;. Private static void FillData(PropertyInfo[] properties, DataTable dt, Object o). DataRow dr = dt.NewRow();. Foreach(PropertyInfo pi in properties). Dr[piName] = pi.GetValue(o, null);. All the Properties for the class array are converted to columns. We can always add a. Condition to include required columns alone. Private static DataTable CreateDataTable(PropertyInfo[] properties). Ciali...
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: May 2006
                                        http://kannanmm.blogspot.com/2006_05_01_archive.html
                                        A place for knowledge sharing. Tuesday, May 30, 2006. Microsoft TechEd 2006 - Chennai. TechEd 2006 - which is going to happen on June 15th 2006 in Chennai. Join this technical community and this is a chance to meet technical gurus. Visit here to know more about TechEd 2006. Posted by Kannan Meiappan : 5:02 AM. 
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: Microsoft training workshops in Chennai
                                        http://kannanmm.blogspot.com/2005/11/microsoft-training-workshops-in.html
                                        A place for knowledge sharing. Thursday, November 10, 2005. Microsoft training workshops in Chennai. Microsoft is conducting training workshops in VS.Net 2005 and SQL 2005. Please look into the below link:. Http:/ www.microsoft.com/india/learning/cplsoffering.aspx. Posted by Kannan Meiappan : 9:59 PM. Nano Superlattice Technology Inc. (OTCBB Symbol: NSLT) is a nanotechnology company engaged in the coating of tools and components with nano structured PVD coatings for high-tech industries. You know THAT Co...
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: Confirmation when deleting a record in the datagrid.
                                        http://kannanmm.blogspot.com/2005/05/confirmation-when-deleting_111569955537970179.html
                                        A place for knowledge sharing. Monday, May 09, 2005. Confirmation when deleting a record in the datagrid. There are 2 possible ways to handle this scenario. Is that, there are checkboxes in each row and on selecting the row, and click the delete button the records are deleted. In Page load of the code-behind file,. BtnDelete.Attributes.Add ("onClick", "return validate ('delete') ;"); / btndelete is command button. Add a client side method in UI,. In Page load of the code-behind file,. In UI part,. 
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: October 2004
                                        http://kannanmm.blogspot.com/2004_10_01_archive.html
                                        A place for knowledge sharing. Wednesday, October 20, 2004. Article published in MSDN. The article written here on Asp.Net 2.0 is also published in the MSDN articles section. Follow this link:. Http:/ www.microsoft.com/india/msdn/articles/273.aspx. Posted by Kannan Meiappan : 12:00 PM. Saturday, October 09, 2004. MICROSOFT ASP.NET 2.0. Development with ASP.NET 2.0 has reduced the number of lines of code required by 70% . In ASP.NET 1.x, Web Forms automatically postback to the same page. That ...In ASP...
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: Microsoft TechEd 2006 - Chennai
                                        http://kannanmm.blogspot.com/2006/05/microsoft-teched-2006-chennai.html
                                        A place for knowledge sharing. Tuesday, May 30, 2006. Microsoft TechEd 2006 - Chennai. TechEd 2006 - which is going to happen on June 15th 2006 in Chennai. Join this technical community and this is a chance to meet technical gurus. Visit here to know more about TechEd 2006. Posted by Kannan Meiappan : 5:02 AM. Comments: Post a Comment. 
                                     
                                    
                                        
                                             kannanmm.blogspot.com
                                            kannanmm.blogspot.com
                                        
                                        Techie Info: March 2005
                                        http://kannanmm.blogspot.com/2005_03_01_archive.html
                                        A place for knowledge sharing. Thursday, March 10, 2005. Placing Radio buttons in Datagrid control. In order to solve the problem mentioned above, we create a template column and put a Label web control in it. In the ItemDataBound event of the DataGrid we wrote code that emits 'Input' element with type as Radio and set its Name attribute. This will display the grid with radio buttons in the column. You can select any one of the radio button at a time. This solved our requirement. Programming at its best.