I have used web browser control in my windforms application for integration nicEditor. I am using it for displaying and editing. How can I disable the options of that web browser. Like when we right click we get options to go back and reload the page etc. How can i disable that in winforms.?
you can do it by setting web browser control's IsWebBrowserContextMenuEnabled property to false.
Related
From one of our application, we are calling window.open() method to open a pop up. When we are using this, the browsers are blocking the popup and user has to disable popup blocker for the specified web site.
Is there any way to disable the popup blockers for specified URL patterns(With out user intervention),like using browser API etc...
No. There is no way to alter the browser's popup blocker behaviour from within a webpage. The best you can do is include a message on your website asking people to turn off their popup blockers while using your site so that the site can function properly.
I am trying for showing the content of html in web browser control. My content having encrypted value for img source. I don't what is this. That image not displaying in Webbrowser control. Also in IE browser. Normally Web browser control supports IE browser.
But it displayed for all browsers(Firefox, Chrome)
Is there way to use any(Firefox, Chorme) of the browser in Web Browser control.
Pls Help me.
Thanks
In WP7 you can only access and start standard WP7 applications, not any third party apps. So unless WP7 will be shipped with another browser, you can't do this.
Is there a way to override the behavior of the back button in the browser when using a Silverlight app?
Essentially what I want to do is use the browser's back button to close dialogs in my application. The dialog covers the whole screen and the user would be inclined to think they are on a separate web page.
Look to the following links:
Prevent Browser Back Button for Silverlight with Confirm Dialog.
Silverlight - Prevent users from losing changes by using the browser back button
Managing Silverlight 3 navigation
behavior
Does the Silverlight Navigation template work when running out of browser?
Sure it does.
And you can use the NavigationServices functions to create a custom "Back" or "Forward" button
great example here : Link
Create a fresh Navigation Application, open the properties page. On the Silverlight tab select "Enable running application out of the browser", switch to the Debug tab, select Out-of-Browser application, change the project in the combo-box to the current silverlight project.
Hit Run, click About, Does it work?
I've got an application that exists primarily for use as a tab, with the canvas page acting as a control panel. When a user authorizes the tab for their page, Facebook redirects to the page url (e.g. http://www.facebook.com/pages/PAGE-NAME … nstalled=1) with the Wall visible, but I would like it to redirect to the canvas page (e.g. http://apps.facebook.com/APP-NAME/?fb_p … nstalled=1). My reason for this is that I need the fb_page_id so I can link the page installed to their saved settings on my end.
Is there some setting I need to change to enable it, or FBML to add to the tab? You can see a working model of this by installing an Involver tab (http://involver.com/), as the app will automatically redirect to the canvas page with both the fb_page_id and installed variables.
Thanks!