Most voted "partialview" questions
13 questions
Sort by count of
-
3
votes1
answer77
viewsWhat is the scope of variables on an ASP.NET MVC page?
I have a view layout: <div> <h1>Pagina Principal<h1> </div> <div> <h3>Simular<h3> </div> <div class="row">…
-
2
votes2
answers868
viewshow to work with Partialview
I have the People Register, and I have the Address Register, which are in two separate classes, because the goal is that the user can have 2 or more addresses, as the delivery, and the collection.…
-
1
votes0
answers25
viewsPartial with Javascript
If I create a Partial this way below "given as example": <script> //Codigos C# Meus documentos.. //Codigos Javascript... </script> ... and within this partial contain code c#, this…
-
1
votes1
answer68
viewsHow to add data using Begincollection and Partialviews
I was able to do the system with data insertion with Begincollection and Partialviews as per seen in this question. Continuing the same, as would the editing part of the data registered in the…
-
1
votes1
answer475
viewsSend data from a partial view to a MVC controller
I want it to be rendered a partial view corresponding to the value of select option. Index.html @{ ViewBag.Title = "Index"; } <h2>Contato</h2> <form class="form-horizontal">…
-
1
votes1
answer169
viewsPartialview not clicking on the default of Select2
I’m having a problem when I call my Partialview, it loads all the data in the View but not in the right format (layout) of Select2, in case when clicking the input appears the data, is currently…
-
0
votes2
answers1736
viewsPartial View does not load Javascript - Asp.Net MVC
I’m switching to a Partial View via a two-parameter controller, music and artist. Already in PV I pass to the function fetchLetra() that is in the file letraAPI.js these parameters for the return of…
-
0
votes1
answer24
viewsIs it possible to have a 'Partialview' in WPF?
I was wondering if it is possible to implement the concept of partialview in a WPF View. Something like a system of tabs, which changes the content of the grid but does not alter the layout of the…
-
0
votes1
answer156
viewsHow to send Partialview input to a controller?
I tried to find something that would take away this doubt, but there’s nothing concrete for what I want. I’m using Visual Studio 2015 and MVC 5 and Razor in my project. I have a form (Create) with a…
-
0
votes0
answers135
viewsRecover Partial View values for Parent View
I’m developing a screen in Aspnet Mvc where I have an index screen that has a model called Parametrizacaovm and on that screen I have a partialView that displays the drives (which is a…
-
0
votes1
answer256
viewsLoading from inside partialview js/css
Good morning,insira o código aqui I am unable to load . js/. css when loading the partialview in the layout <!DOCTYPE html> <html> <head> ... @RenderSection("header", required:…
-
0
votes1
answer37
viewsASPNET Core - Error 500 when posting a method that returns a Partialview with only one object
I have a method in my controller called ListagemTarefasEmDesenvolvimento() that returns me a PartialView. However, when I call this method via ajax, the server gives me a status error 500. Below is…
-
-1
votes1
answer173
viewsRender css/js inside a second Partialview
Using C# MVC5 I have the file "_Layout.cshtml" which loads the standard scripts and css. Each page on my site (Partialviews) then has sections (Script.Render and Style.Render) to load some separate…