How to add help files to an MVC3 application? - asp.net-mvc-3

I have to add help to the different pages in my MVC3 application. What is the best way to go about this?
Thank you

Each view could put some help info or help link in a section of your layout.
For instance, in your main layout you could have a "SideBarHelp" section... and use #RenderSection to display what the view provides as help.
In the views you use:
#section SideBarHelp{
//Your Help text or link here
}

Related

How would I move from the default ASP.NET layout to another theme

I just started to use MVC for a simple website. Very new to this.
I am trying to change from the default layout to a simple layout page with sidebar navigation with drop-down list capability. Something similar to one that is shown in the enter link description here
Could you please guide me through this? I have downloaded the HTML, CSS and js files.
I added them to the project and referred to them in the bundleconfig.cs. But still no success.
Thank you very much

Add a custom button in the Tabbar in Xamarin Forms

Is there any way to add a custom button in the tabbar of Xamarin.Forms, like it's seeable on the mock below?
Thanks in advance.
Cue.
You can use relative layout to add the tabs in Xaml,
If you need any coding help let me know I'll help you to design this layout.
I came across this question while looking into implementing a very similar tab bar. There is one other option I've found to do this without writing those hefty custom renders yourself. Check out Sharpnado. It provides a variety of possible customizations for a Xamarin.Forms tab bar.
There is also a blog post on implementing a few options, complete with sample code you can clone.

Orchard About us Page in Solution Explorer

I am new to Orchard CMS. I have created an About-Us page from the admin Dashboard.
Now, I want to put javascript on About-Us page only. Kindly tell me where can I find the About-Us page in solution explorer of Visual Studio? Or is there any other way to achieve this?
PS: I am using Orchard 1.8.
Thanks
I do not think, i quite get it.
here is the view for the dashboard: \Orchard.Web\Core\Dashboard\Views\Admin\Index.cshtml
Adding javascript to any view is done by using Script.Include([PathToResource]) or Script.Require([NameOfResource]) and/or #using (Script.Foot()) { [InlineJavascript]}
If what you are asking is, How to add javascript to a page created with the Page Content Type then you need to add Parts to your ContentType.
A good start will be Vandelay.Industries 1.8 (the latest), but there are others.
Enjoy!

Has anybody used MVCWizard.Wizard with MVC3?

I'm looking to do a multistep webpage with around 5 steps, at least one of which will require a partial view with a grid and filtering.
I've downloaded the MVCWizard from NuGet, and set up my views, however I can find no example code for the controller.
Has anyone used this control? Do you have a sample controller I could see?
Alternatively, is there another wizard control which would do this?
Many Thanks
John
Sorry. maybe too late for the answers, but I found it now!!! It can help anyone too, so in the nuget page of MVCWizard you can find the example.
Nuget MVCWizard example

customize category page in magento

I am a newbie in magento. Please let me know how can I edit my category page.
If I want to add some html code to a particular category then from which file should I for in magento root folder.
Please help.
Thanx in advance.
If you only want to add to the category and not modify the existing output, then one option is to create a Static Block with whatever html that you want, and then edit your category and choose that block in the "Display Settings" tab.
Since you're new perhaps you should start with the designer's guide and theming wiki.
The difficulty with theming is no one file is responsible, about the best trick you can learn is using template hints.

Resources