What is differance between WebBrowser and WebBrowserTask [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
I am new to Windows Phone development. In one of my requirement I need to open the HTML pages to show some information and after complete reading this pages will return some data to my application, in such case WebBrowser is useful or WebBroserTask is useful?? Only WebBrowser.IsScriptEnabled is itself sufficient to achieve my target?? If possible please suggest me some code sample.
Thanks in advance.

If you need to get some data from the web page, you should use the WebBrowser control.
The WebBrowserTask puts you app in background and opens the specified page in Internet Explorer. Your app can't interact with it.

Related

extendedBackgroundTaskTime and Store release? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 4 years ago.
Improve this question
I am a bit confused, as according to the documentation, only personal and enterprise apps are allowed to use this. But it seems like there are apps on the store that do it, and the Windows App Certification kit did not flag my app. Can I submit it to the store without any problems? If not, is there any way to still get approval submit it?
If it is not possible, can an user somehow add this capability if needed after downloading it from the store without it? Like via Powershell?
You can definitely submit apps to the Store with this capability. Your app will be subject to an additional onboarding review to ensure you are using the capability for good reasons. I think the documentation wording may need to be updated.

Adding new item in Visual studio 2010 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
I am using visual studio 2010. I created a master page for the website. Now I would like to add a new item to this page. But the option is disabled. Please help me in adding a new item.
Being that you used the term "Master Page", I'm going to assume this is an ASP.NET Web Forms project.
Think of a Master Page as an abstract class. You cannot view it directly, but implement it in your pages.
Check out this beginner tutorial
http://www.codeproject.com/Articles/333650/Beginner-s-Tutorial-on-Master-Pages-in-ASP-NET

How to integrate asp.net web application with Google Drive? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have existing web application in asp.net, now i like to add Google drive to my web application. Is it possible or not in asp.net web application. If it is possible, please help me. Thanks in advance.
Did you even bother to look at the drive sdk before asking? Right in the front page of the sdk there is a complete .net sample for drEdit and all apis in help contain a sample in .net as well.

WPF library with page - navigation of the application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
Now I experiment with your application architecture. I have wpf library(AppView.dll MVVM) with my pages (View/MyPage.xaml). I use this library in my wpf app. How do I set the correct URI for navigation ? I tried URI so "pack://application:,,,/AppView;View/MyPage.xaml". But there is an error - "resource not found appview;view/MyPage.xaml". How to use the navigation page from another assembly?
Try using /AppView;component/View/MyPage.xaml or "pack://application:,,,/AppView;component/View/MyPage.xaml"

Stream video in Windows 8 App [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
Is there any specific api or sdk with help of which I can stream data from a webserver.
I dont want to use webview to show youtube like feature. But direct streaming without webview?
Thanks for any response
That's super easy, just use a MediaElement and put the address of your video in the Source property, like this:
<MediaElement Source="http://media.ch9.ms/ch9/70b1/b49fa0ce-5112-4852-a178-66dda70b70b1/MakerFaire2013NYCEWB_high.mp4" />
That's all! Now you can stream any video.

Categories