Click here to Skip to main content
15,893,814 members
Home / Discussions / C#
   

C#

 
GeneralRe: SoundPlayer Pin
Kristian Sixhøj25-Nov-07 8:59
Kristian Sixhøj25-Nov-07 8:59 
GeneralRe: SoundPlayer Pin
MasterSharp25-Nov-07 8:59
MasterSharp25-Nov-07 8:59 
GeneralRe: SoundPlayer Pin
MasterSharp25-Nov-07 9:02
MasterSharp25-Nov-07 9:02 
GeneralRe: SoundPlayer Pin
Kristian Sixhøj25-Nov-07 9:10
Kristian Sixhøj25-Nov-07 9:10 
GeneralRe: SoundPlayer Pin
MasterSharp25-Nov-07 9:38
MasterSharp25-Nov-07 9:38 
GeneralRe: SoundPlayer Pin
Kristian Sixhøj25-Nov-07 9:42
Kristian Sixhøj25-Nov-07 9:42 
GeneralRe: SoundPlayer Pin
MasterSharp25-Nov-07 9:47
MasterSharp25-Nov-07 9:47 
QuestionRequest made to the server from Web Browser Control? Pin
Khoramdin25-Nov-07 7:04
Khoramdin25-Nov-07 7:04 
Hello everyone,

I am working on hooking to a Web Browser Control in my Windows Application. For example the following code is used to display the typed password or get the web address of the site.

public void OnBeforeNavigate2(object pDisp, ref object URL, ref object Flags, ref object TargetFrameName, ref object PostData, ref object Headers, ref bool Cancel)
        {
            document = (HTMLDocument)webBrowser.Document;

            foreach (IHTMLInputElement tempElement in document.getElementsByTagName("INPUT"))
            {
                if (tempElement.type.ToLower() == "password" && tempElement.value.ToString() != "")
                {
                    MessageBox.Show("You typed '" + tempElement.value + "' for your Password");
                }
            }
        }
.
.
.
public void OnDocumentComplete(object pDisp, ref object URL)
        {
            MessageBox.Show(URL.ToString());
        }


The problem is that not all website Navagate from one page to another page and eventhough requests are still made to the server but there no navagation to a new URL address. For example when I get to site build in Flash.

Can someone tell me how I can monitor the request made to the server?

Thank you for your help.

Khoramdin




-- modified at 13:11 Sunday 25th November, 2007
QuestionCheck if x minutes has passed Pin
Kristian Sixhøj25-Nov-07 4:27
Kristian Sixhøj25-Nov-07 4:27 
AnswerRe: Check if x minutes has passed [modified] Pin
Ravi Bhavnani25-Nov-07 5:09
professionalRavi Bhavnani25-Nov-07 5:09 
GeneralRe: Check if x minutes has passed Pin
Kristian Sixhøj25-Nov-07 5:20
Kristian Sixhøj25-Nov-07 5:20 
GeneralRe: Check if x minutes has passed Pin
Paul Conrad25-Nov-07 6:56
professionalPaul Conrad25-Nov-07 6:56 
GeneralRe: Check if x minutes has passed Pin
Anthony Mushrow25-Nov-07 7:02
professionalAnthony Mushrow25-Nov-07 7:02 
AnswerRe: Check if x minutes has passed Pin
Ravi Bhavnani25-Nov-07 7:02
professionalRavi Bhavnani25-Nov-07 7:02 
GeneralRe: Check if x minutes has passed Pin
Kristian Sixhøj25-Nov-07 7:12
Kristian Sixhøj25-Nov-07 7:12 
AnswerRe: Check if x minutes has passed Pin
Ravi Bhavnani25-Nov-07 7:20
professionalRavi Bhavnani25-Nov-07 7:20 
GeneralRe: Check if x minutes has passed Pin
Kristian Sixhøj25-Nov-07 7:24
Kristian Sixhøj25-Nov-07 7:24 
GeneralRe: Check if x minutes has passed Pin
Kristian Sixhøj25-Nov-07 7:48
Kristian Sixhøj25-Nov-07 7:48 
GeneralRe: Check if x minutes has passed Pin
Ravi Bhavnani25-Nov-07 7:50
professionalRavi Bhavnani25-Nov-07 7:50 
QuestionMore DirectSound Pin
MasterSharp25-Nov-07 4:14
MasterSharp25-Nov-07 4:14 
AnswerRe: More DirectSound Pin
martin_hughes25-Nov-07 4:35
martin_hughes25-Nov-07 4:35 
GeneralRe: More DirectSound [modified] Pin
MasterSharp25-Nov-07 5:23
MasterSharp25-Nov-07 5:23 
QuestionLock a directory Pin
mahdiehIR25-Nov-07 3:47
mahdiehIR25-Nov-07 3:47 
AnswerRe: Lock a directory Pin
Guffa25-Nov-07 3:52
Guffa25-Nov-07 3:52 
GeneralRe: Lock a directory Pin
Paul Conrad25-Nov-07 11:09
professionalPaul Conrad25-Nov-07 11:09 

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.