944,110 Members | Top Members by Rank

Ad:
  • C# Discussion Thread
  • Unsolved
  • Views: 8019
  • C# RSS
Oct 15th, 2007
0

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

Expand Post »
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.
Reputation Points: 10
Solved Threads: 0
Light Poster
manjusaharan is offline Offline
35 posts
since Sep 2007
Oct 15th, 2007
0

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

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...
Featured Poster
Reputation Points: 480
Solved Threads: 276
Postaholic
Ramy Mahrous is offline Offline
2,189 posts
since Aug 2006
Oct 15th, 2007
0

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

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
Featured Poster
Reputation Points: 480
Solved Threads: 276
Postaholic
Ramy Mahrous is offline Offline
2,189 posts
since Aug 2006
Oct 15th, 2007
0

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

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.
Reputation Points: 10
Solved Threads: 0
Light Poster
manjusaharan is offline Offline
35 posts
since Sep 2007
Oct 15th, 2007
0

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

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.
Featured Poster
Reputation Points: 480
Solved Threads: 276
Postaholic
Ramy Mahrous is offline Offline
2,189 posts
since Aug 2006
Oct 15th, 2007
0

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

Sorry Sir,
i m not accessing Access tables ,in fact i m using tables created in Html using<table>,<tr>,<td > tags.
I think u misuderstood me.
Am i right????????
Reputation Points: 10
Solved Threads: 0
Light Poster
manjusaharan is offline Offline
35 posts
since Sep 2007
Oct 15th, 2007
0

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

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
Featured Poster
Reputation Points: 480
Solved Threads: 276
Postaholic
Ramy Mahrous is offline Offline
2,189 posts
since Aug 2006
Oct 27th, 2009
0
Re: how to get the row id of the clicked row in a HTML table using c#
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
Quote ...
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;
}
Reputation Points: 10
Solved Threads: 0
Newbie Poster
isozworld is offline Offline
1 posts
since Jan 2009

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C# Forum Timeline: Extracting report form oracle database
Next Thread in C# Forum Timeline: Need C# code MIDI commands to Audio Mixer





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC