Hi Experts,
here is the file structure what I am getting:-
FileName ,Docname, Repeat1, Repeat2(these are the header of the file)
tronox, tronoxdoc, one,
tronox, tronoxdoc, two,
tronox, tronoxdoc, three,
expected output is:-
FileName ,Docname, Repeat1, Repeat2(these are the header of the file)
tronox, tronoxdoc, one, five
tronox, tronoxdoc, two, five
tronox, tronoxdoc, three,
I am not getting how to achieve this.
below is my code:-
<pre lang="cs">using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e) Go to the complete details ...