954,549 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

how to get the row id of the clicked row in a HTML table using c#

hi All,
I m new to c#.I m using a HTML table in web browser control and wants to get the rowid of the clicked row in HTML table.bt dont have any idea how to get.
IS there any method for getting the row id of the clicked cell.
Please help me in solving the problem thanx in advance.

manjusaharan
Light Poster
35 posts since Sep 2007
Reputation Points: 10
Solved Threads: 0
 

if you used GridView, DataList, .... controls you can bind the data to them and get the value of something if you clicked (or take a specific action) on specific row.
but html table used for alignment and design requirements...

Ramy Mahrous
Postaholic
2,196 posts since Aug 2006
Reputation Points: 480
Solved Threads: 276
 

oooh, that's ASP.NET not HTML, if you need to learn asp.net go to www.asp.net you'll find all resources to be professional web developer ;)

Ramy Mahrous
Postaholic
2,196 posts since Aug 2006
Reputation Points: 480
Solved Threads: 276
 

No Sir,
I have only Html files and i have to access it in c# sothst i can use that module in my application.
isn't there any method in c# by which i can get the clicked row's Id.
Please help.

manjusaharan
Light Poster
35 posts since Sep 2007
Reputation Points: 10
Solved Threads: 0
 

how can u got the data inside the tables (access db) by html, if you could by Java Script you can't identity the rows let me give you example
1
2
5
6
7
can u give a way if you pressed on number 6 tell you that u clicked on the 4th row??!!

u've raw data without any specific structure so you can't make use else read it.

Ramy Mahrous
Postaholic
2,196 posts since Aug 2006
Reputation Points: 480
Solved Threads: 276
 

Sorry Sir,
i m not accessing Access tables ,in fact i m using tables created in Html using,, tags.
I think u misuderstood me.
Am i right????????

manjusaharan
Light Poster
35 posts since Sep 2007
Reputation Points: 10
Solved Threads: 0
 

yes, I am; but my answer for what I understood and what you mean.
else you in each row have a value you assign. HTML == static

Ramy Mahrous
Postaholic
2,196 posts since Aug 2006
Reputation Points: 480
Solved Threads: 276
 

Hi manjusaharan,
I think I understand exactly what you are going to do
I write this code for you and checked. I am sure it is going to help you.

wb is a web browser component

foreach (HtmlElement htmlobj in wb.Document.All)
{
if (htmlobj.TagName =="TABLE")
foreach (HtmlElement htmlTableTD in htmlobj.Document.All)
{
if (htmlTableTD.TagName == "TD")
MessageBox.Show(htmlTableTD.OuterText);
break;
}
break;
}

isozworld
Newbie Poster
1 post since Jan 2009
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You