Adding new item in Visual studio 2010 [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 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

Related

Customize Email in Outlook using Add-In-Express [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I would like to customize an email message in Outlook (using Add-In-Express). I want to add a check box (with some text) under the Subject (in the pane where the Subject, To, CC etc exists).
anyone can guide how can I do this?
Thanks
Hagai
The Outloook extensibility model doesn't provide anyhting for that. But you may use Advanced Outlook view and form regions. The TopSubpane layout allows to place your form right under the ribbon where you can place any .net controls.

What is differance between WebBrowser and WebBrowserTask [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 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.

replace variables in querystring for url path asp.net c# [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
i know there's a way to do this, but i just can´t remember how it was, i did search in the other posts about this topic but is not just what i'm looking for:
i have this
http://www.example.com/detail.aspx?userid=gartest&tutorialid=1001
should be like
http://www.example.com/gartest/1001
plase help, thaks
In asp.net webforms you can create ASP.net mvc like route rules to do so.
http://msdn.microsoft.com/en-us/library/dd329551.ASPX
http://msdn.microsoft.com/en-us/library/cc668177.aspx

No Filters folder in MVC4 Project? [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
I am following a tutorial on using the Web Api and it is asking me to expand the Filters folder , the problem is I cant find this folder anywhere within my project.It is needed to add some authorization to the project.Anyone know why the filters folder isnt in my project?.
Internet Application and Single Page Application project templates for ASP.NET MVC 4 have a Filters folder. If you created the application with some other template, you may not get this folder.
For authorization you can use Authorize Attribute at the controller level or action level or at application level. It authorizes the user, and if not redirect to login page as described in web.config.

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"

Categories