_Layout.cshtml in MVC3 with Razor has view mode? - asp.net-mvc-3

I need some help!
I try to design my master page by _Layout.html with Razor. But I can see it as review cause there's no View mode in Visual Studio. I just want to know: Does _Layout.cshtml in MVC3 has view mode, source mode and split mode like masterpage (*.Master) ? If yes, how can I use it?
Thanks all!

No, there is currently no WYSIWYG editor in Visual Studio for ASP.NET MVC view designing.
But there is a brighter side to that answer. Use FireFox and a plug-in called Firebug. Firebug is possibly one of the greatest tools that a web developer can have. It not only lets you see everything from markup to Ajax requests, but it also allows you to do real-time editing/modifying of HTML and CSS.
Firebug

Related

How can view the Figma Telerik UI form on the blazor project?

Already created Telerik UI from by Figma. How can that plugging and view on blazor page?
Thanks!
I am not familiar with Figma but I think it is about styling so you probably have the CSS theme for the Telerik components from it. So, now you need the content - that is the actual form. Perhaps you just need a model with the desired fields and the TelerikForm to show them in.

Design View for ASP.NET MVC3 Views

Is there a Design View in ASP.NET MVC3 ?
There is no 'Design' view in MVC, like there is in Forms. However your views are just HTML so you can use any HTML editor, although they will not be able to interpret the Razor syntax.
What most people do is make changes to the HTML, save (you don't have to recompile,) and refresh your browser. Google Chrome has a very help full tool built in (Firebug or something like it.) Just right click on the page and select Inspect Element. This will come in very handy.
Also one thing to think about since you're new to MVC is that you can easily use most any css themes that you can find online to make the site look very different out of the box.

Render a RDL (Reporting Services) in MVC3

Can I display report services file (RDL), direclty in a view with MVC (Razor)? Tried in various ways, but without success. Anyone have any useful tips about this?
Sorry for bad english.
Regards,
No, you cannot as the RDL file requires a viewer control which is a server side control to render the report. MVC Razor views do not support server side controls.
But.. you can add an .aspx page to your project and add a report viewer to that page. It won't work with the Razor .vbhtml or .cshtml files in MVC

TabContiner with razor

I have a question. Is it possible to work with AJAX Control Toolkit in razor views?
I need to use TabContainer or similar (it could be a HTML Helper)
I know I can use it in aspx but I'm using Layouts on my project... so maybe a partial view is the solution, I really don't know.
Regards.
I have a question. Is it possible to work with AJAX Control Toolkit in razor views?
Not recommended. The AJAX Control Toolkit consists of server side controls which depend on ViewState and PostBack which are notions that no longer exist in ASP.NET MVC. So referencing the AjaxControlToolkit assembly inside an ASP.NET MVC application is like attaching a caravan on a Lamborghini.
As an alternative you might take a look at jQuery UI which has many useful widgets such as Tabs.

How to AJAXify ASP:Wizard Control

Happy Friday All,
I have an ASP.net 2.0 website that I'm updating to .Net 3.5. The site uses a master page and I've placed asp:UpdatePanel in it.
One of the pages has a 3-step wizard control that I'd like to "Ajaxify" in some way. Are there better controls in the AJAX control toolkit that provide an improved user experience over the asp:Wizard control?
Please share with me your efforts to improve upon the asp:Wizard control. Did you move to a different control? Stay with asp:Wizard and add effects to it?
Thanks,
Sid
Kind of late, but I'll answer. I used the Telerik RadAjaxManager control to ajaxify my Wizard control, and I regretted it because of performance issues.
If I were you, I'd pursue setting up divs and use JQuery to selectively show/hide them to emulate a wizard.

Resources