Window.status Bar
-
Hi All, I am working on the project using c# 2.0. I need to get the contents of window.status bar and save into string variable. Please help if you can. Thanks in advance.
A.Asif
What window are you talking about? The web browser's status bar?
Tech, life, family, faith: Give me a visit. I'm currently blogging about: What this world needs... (Video) The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
What window are you talking about? The web browser's status bar?
Tech, life, family, faith: Give me a visit. I'm currently blogging about: What this world needs... (Video) The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
yes web browser window. I am using the following code but doesn't work. string result = LPBrowser.Document.Window.StatusBarText; Thanks.
A.Asif
I'm sorry, I still don't understand. Is LPBrowser something in ASP.NET? Or is this a Windows Forms web browser control? If it's a Windows Forms web browser, have you looked at browser.StatusText property? If this is something in ASP.NET, I recommend you post your question in the ASP.NET forum.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Back From Vacation The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
I'm sorry, I still don't understand. Is LPBrowser something in ASP.NET? Or is this a Windows Forms web browser control? If it's a Windows Forms web browser, have you looked at browser.StatusText property? If this is something in ASP.NET, I recommend you post your question in the ASP.NET forum.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Back From Vacation The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
Hi, LPBrowser is just the name I gave to browser control. Currently I am using following code but for some reason these codes not working, string result; string someVar; some Var = LPBrowser.StatusBarText //This line doesn't work result = LPBrowser.StatusText; ///This line doesn't work
A.Asif