ASP.NET - regarding : Merging Two row in Gridvies

Asked By Thiyagu S
09-Sep-10 03:44 AM


 Hi friends .... How to i merge two rows using IMAGE BUTTON (there are two image button like... Up/Down)

      Pls provide solution for me.............
  Girish Barje replied to Thiyagu S
09-Sep-10 03:55 AM
Hi

Check the following link, this may sort your issue

http://www.vbknowledgebase.com/?Id=149&Desc=ASP.Net-GridView-Group-Rows
Create New Account
help
reply is completeley to the right corner , It was better below I wish the reply button would be nearer to navigate Hi Robbe, Another issue Clicking on Edit i thought would and reason Regards Sorry for wrong issue, I wish there would be some edit option Check this post. the UI is getting disturbed http: / / www.eggheadcafe.com / community / asp-net / 17 / 10371909 / gridview-sorting-using-jquery.aspx Navigation menu missing in forum merit page http: / / www.eggheadcafe.com select number of posts per page . . . but in the New site it is missing. . . . hi. . . check out the belowlines 2 Replies MVC and WCF ( 0 views ) Submitted By Ismael on 17-Oct-11 in ASP.NET . 4 Replies How to make GeoFence in google map using c# ( 0 views ) Submitted By
insert, delete, update data in gridview using ID as PK on button click code for insert, delete, update data in gridview using ID as Primary Key on button click event For Edit , Update and Delete in GridView You have to Implement following Events of GridView- 1. OnRowEditing 2. OnRowCancelingEdit 3. OnRowUpdating 4. OnRowDeleting Try this code sample .aspx code- <asp GridView ID = "GridView2" runat = "server" AutoGenerateColumns = "false" DataKeyNames = "empid" onrowcancelingedit = "GridView2_RowCancelingEdit" onrowdeleting = "GridView2_RowDeleting" onrowediting = "GridView2_RowEditing" onrowupdating DataTextField = "Deptid" DataValueField = "DeptId" / > < / EditItemTemplate> < / asp:TemplateField> <asp:CommandField ShowEditButton = "true" ShowDeleteButton = "true" / > < / Columns> < / asp:GridView> .cs code- Function to bind Grid private void getdata() { SqlConnection con = new SqlConnection("Data Source
Help me. . . . . . hi all, i just want to say that actually i am new to asp.net 2.0 i have a work over my head and really m not knowing how OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO ALTER TABLE [dbo].[EmpTechExp] WITH CHECK ADD FOREIGN KEY([TechID]) REFERENCES [dbo].[TechnologyMaster] ([TechID]) GO ALTER TABLE [dbo].[EmpTechExp] WITH CHECK ADD CONSTRAINT [FK_EMPID] FOREIGN KEY([EmpID]) REFERENCES [dbo].[EmployeeProfile] ([EmpID]) GO ALTER TABLE [dbo].[EmpTechExp CHECK CONSTRAINT [FK_EMPID] GO ALTER TABLE [dbo].[EmpTechExp] WITH CHECK ADD CONSTRAINT [FK_Status_code] FOREIGN KEY([Status_code]) REFERENCES [dbo].[Status_mas] ([Status_code]) GO ALTER TABLE [dbo].[EmpTechExp] CHECK CONSTRAINT [FK_Status_code] CREATE TABLE [dbo].[ProjectExp]( [EmpID] [int] NOT NULL, [TechID] [int] NOT NULL, [ProjectName PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO ALTER TABLE [dbo].[ProjectExp] WITH CHECK ADD FOREIGN KEY([Status_code]) REFERENCES [dbo].[Status_mas] ([Status_code]) GO ALTER TABLE [dbo].[ProjectExp] WITH CHECK
Fill Gridview With Image I have to display image in gridview , i ahve a table which consists the path of a picture, And by default the pictures are in the Sameproject folde, Now i have to show image in gridview which takes path from table and image from Project folder For that, You need to store the virtual path in your database. Like this: If u have the image as "C: \ Temp \ Image1.jpg" and your project contains the folder as Images and u
ASP.NET Data Control Series - Part 2 Part 2 of the ASP.NET Data Control Series continues. In this article, the FormView DataControl is given a closer inspection. ASP.NET 2.0 Data Controls Author: Douglas Minnaar The intent of this series is to provide more information concerning the functionality and limitations of the available ASP.NET 2.0 data controls. This will mostly be demonstrated through the use of code samples