Click here to Skip to main content
15,908,020 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to get the innerHtml from iframe in C# ? Pin
N a v a n e e t h17-Oct-07 22:21
N a v a n e e t h17-Oct-07 22:21 
GeneralRe: how to get the innerHtml from iframe in C# ? [modified] Pin
kkun17-Oct-07 22:43
kkun17-Oct-07 22:43 
GeneralRe: how to get the innerHtml from iframe in C# ? Pin
lmoelleb17-Oct-07 22:24
lmoelleb17-Oct-07 22:24 
GeneralRe: how to get the innerHtml from iframe in C# ? Pin
kkun17-Oct-07 23:02
kkun17-Oct-07 23:02 
QuestionConnection String in App config file Pin
dataminers17-Oct-07 14:44
dataminers17-Oct-07 14:44 
AnswerRe: Connection String in App config file Pin
dataminers17-Oct-07 15:20
dataminers17-Oct-07 15:20 
QuestionHow to Click Element in DOM document Pin
A.Asif17-Oct-07 13:24
A.Asif17-Oct-07 13:24 
AnswerRe: How to Click Element in DOM document Pin
Judah Gabriel Himango17-Oct-07 15:48
sponsorJudah Gabriel Himango17-Oct-07 15:48 
I recall some issues with this as well, at least with the managed wrapper of the WebBrowser control (e.g. System.Windows.Forms.WebBrowser). I ended up using reflection and invoking it, and it seemed to work then. Something like this:

IHTMLElement2 element = doc.getElementById("newlink");
System.Reflection.MethodInfo clickMethod = element.GetType().GetMethod("click");
clickmethod.Invoke(element, new object[0]);


Try the above and see if it changes anything.


Tech, life, family, faith: Give me a visit.
I'm currently blogging about:
No, Not I - A poem by Holocaust escapee, chief rabbi, and Messiah-follower Daniel Zion (audio)

The apostle Paul, modernly speaking: Epistles of Paul

Judah Himango


Questionvideo stream URL Pin
shabonaa17-Oct-07 13:13
shabonaa17-Oct-07 13:13 
QuestionQuestion regarding Windows Control Library and Properties Pin
godspeed12317-Oct-07 12:33
godspeed12317-Oct-07 12:33 
AnswerRe: Question regarding Windows Control Library and Properties Pin
N a v a n e e t h17-Oct-07 19:00
N a v a n e e t h17-Oct-07 19:00 
QuestionUnable to connect to remote server Pin
Manoj Sethi17-Oct-07 12:04
Manoj Sethi17-Oct-07 12:04 
QuestionWho uses wsdl.exe? Pin
jesarg17-Oct-07 10:13
jesarg17-Oct-07 10:13 
AnswerRe: Who uses wsdl.exe? Pin
Pete O'Hanlon17-Oct-07 10:16
mvePete O'Hanlon17-Oct-07 10:16 
AnswerRe: Who uses wsdl.exe? Pin
led mike17-Oct-07 10:56
led mike17-Oct-07 10:56 
GeneralRe: Who uses wsdl.exe? Pin
jesarg17-Oct-07 11:16
jesarg17-Oct-07 11:16 
QuestionTabs, buttons, and media questions [modified] Pin
C# Beginner Nick17-Oct-07 9:45
C# Beginner Nick17-Oct-07 9:45 
AnswerRe: Tabs, buttons, and media questions Pin
Christian Graus17-Oct-07 10:45
protectorChristian Graus17-Oct-07 10:45 
GeneralRe: Tabs, buttons, and media questions Pin
C# Beginner Nick17-Oct-07 10:58
C# Beginner Nick17-Oct-07 10:58 
GeneralRe: Tabs, buttons, and media questions Pin
Christian Graus17-Oct-07 11:04
protectorChristian Graus17-Oct-07 11:04 
QuestionRe: Tabs, buttons, and media questions [modified] Pin
C# Beginner Nick17-Oct-07 11:12
C# Beginner Nick17-Oct-07 11:12 
GeneralRe: Tabs, buttons, and media questions Pin
Christian Graus17-Oct-07 11:25
protectorChristian Graus17-Oct-07 11:25 
QuestionRe: Tabs, buttons, and media questions Pin
C# Beginner Nick17-Oct-07 11:27
C# Beginner Nick17-Oct-07 11:27 
AnswerRe: Tabs, buttons, and media questions Pin
Christian Graus17-Oct-07 11:51
protectorChristian Graus17-Oct-07 11:51 
AnswerRe: Tabs, buttons, and media questions Pin
Chaitanya Joshi17-Oct-07 21:40
Chaitanya Joshi17-Oct-07 21:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.