Razor is a template language used by ASP.NET Web Pages and ASP.NET MVC (since version 3). It supports seamless transitions between HTML markup and C# or VB code. Transitions between markup and code are indicated by the "@" sign.
-2
votes
0answers
22 views
Update multiple views and multiple clients in ASP.NET MVC (Razor)
I am using ASP.NET MVC 4 with a Razor viewmodel. I want to implement SignalR with Knockout. Here is my code which is currently working perfectly.
I have a requirement that when a task is created it ...
0
votes
1answer
25 views
Data of Partial page is not binding in viewModel
ViewModel:
public class AdminAddMovieDataBase
{
public MovieInformation MovieInformation { get; set; }
public List<Genre> Genres { get; set; }
}
BasePage:
<div ...
0
votes
1answer
17 views
2 Instances of SimpleMembership in MVC 4 Razor solutions
I have a solution for a client I am working on that is being built in .net MVC 4 Razor that contains the following;
Public website with a client login area.
Private company webapp for running the ...
1
vote
0answers
11 views
Unable to access javascript file (.js) using Service Stack Razor
I'm using Service Stack Razor (ServiceStack.Razor.3.9.45) and I can't access any js nor css file.
Server Error in '/' Application.
This type of page is not served.
Description: The type of page you ...
0
votes
1answer
23 views
How can I extend DataAnnotationsModelMetadata
I have a custom DataAnnotationsModelMetadataProvider and I'd like to return an object derived from ModelMetadata so that I can have extra properties in my razor templates.
So far my custom provider ...
0
votes
0answers
14 views
Convert Nvelocity to Razor engine syntax
Hi I'm working on a mvc 4 app that currently uses Nvelocity templates (.vm extension) and want to use the razor engine instead. I plan to use knockout and JQuery libraries. Any suggestions?
Here is ...
0
votes
1answer
14 views
asp.net razor fresh project failing to do membership with mysql
Simple project, fresh MVC4 razor web page, new empty mysql database. Getting this exception:
System.Reflection.TargetInvocationException was unhandled by user code
Message=Exception has been thrown ...
0
votes
0answers
36 views
Multiple dropdownlists data to add multiple rows in table
This is my view:
@foreach(var student in ViewBag.Students){
<div class="editor-field">
@Html.DropDownListFor(x => x.StudentId, ...
0
votes
1answer
18 views
After a change to the default routing map my actionlinks stopped working
I made a change to my routing map which is following now:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}/{title}",
defaults: new { ...
0
votes
1answer
16 views
How can i load partial view dynamically?
How can i load partial view dynamically?I tried to use with querystring as below but i got error when runtime.
My code:
@Html.Partial("_Sample?id=3")
2
votes
0answers
13 views
How to Bind dropdown from anonymous class values
I want to populate a dropdown with values A,Band C.The below code works for create only,not for edit.
ViewBag.UserType = new[] { new SelectListItem { Text = "A", Value = "1", Selected = false }, ...
0
votes
0answers
17 views
How can I dynamically change the Twitter Profile and Search?
I can display two Twitter boxes next to each other like this, using the Web Helpers package in a Razor 2 asp.net website.
<div id="dynaMashTab-Twitter" >
<span id="spanProfile" ...
1
vote
0answers
46 views
Getting AJAX to not load a new page after submitting a form and instead render a partial view or nothing
I'm in a bit of a bind here, I am trying to submit a form using ajax, all goes well and dandy until after the server has done it's thing, it decides to load to the action onto a new page, which is ...
2
votes
1answer
26 views
why adding razorformat breaks web services in servicestack latest 3.9.45.0
I am breaking my head today why after upgrading to latest servicestack and servicestack.razor my routing in web services stops working. So I did the following test.
created a new empty web project ...
0
votes
1answer
26 views
Edit operation with radioButtons
The model is IEnumerable of RatingSource
public class RatingSource
{
public int Id { get; set; }
public string Source { get; set; }
public bool IsActive { get; set; }
...
1
vote
1answer
27 views
Does the ViewBag in RenderBody get passed down?
Really simple question.
My layout page looks like
@RenderBody()
@{
if (ViewBag.IsInternal)
{
//do something here
}
}
The partial looks like
@{
ViewBag.IsInternal = false;
}
Is it ...
0
votes
1answer
28 views
Why is my attempt to return only part of the html ajax response failing in C#.net environment?
Here is my $.ajax function:
$("div#eventBox").click(function () {
$.ajax({
url: "/AJAX Pages/Test.cshtml",
async: true,
type: "GET",
success: function (response) {
...
1
vote
3answers
80 views
Getting/setting the value of an integer inside a Razor view
I have a a list of elements and I would like to edit it.
I created this snippet:
@{
ViewBag.Title = "Liste des comptes administrateurs";
Layout = "~/Views/Shared/_Layout.cshtml";
int i ...
0
votes
2answers
26 views
Need to convert MVC Razor model to aspx directive
Having trouble to convert the following MVC Razor @Model to ASPX directive.
What is the aspx mapping for Razor @model PagedList.IPagedList<CapitalProjects.tblSite> ?
1
vote
2answers
33 views
When adding a if-row Razor not finding the last bracket
My code looks like this:
<div class="accordion" id="accordion2">
@foreach (var news in newsList)
{
string collapseID = "collapse" + @news.ID;
string subscriptionName = ...
0
votes
2answers
37 views
How to solve this Javascript/Razor prolem?
I try to add the following javascript code.
<script>
@if (ViewBag.checkedArtikel != null)
{
foreach (int ac in ViewBag.checkedArtikel)
{
String temp = ...
0
votes
4answers
52 views
Event Asp Mvc Redirect
I am beginner in asp.net mvc. I have in the view Home.cshtml
<button name ="del" style="width:150px; ...
0
votes
2answers
32 views
Asp Mvc Redirect Controller
I am beginner in asp.net mvc. I have in the view Home.cshtml
<a href="" style="color:blue; margin-top : 30px;">Créer un nouveau compte</a>
I'd like to associate this link to this action ...
1
vote
1answer
19 views
ASP.NET MVC Razor dynamic load new textbox and dropdownlist in a form
i´m just testing ASP.NET MVC Razor for one of my projects and i run in a problem i have no solution for at moment. Maybe someone can help me.
I have a page with two input elements. A textBox and a ...
0
votes
1answer
25 views
Display XML (in formatted way) into a Razor Textarea
i have a little problem.
I have a string (containing XML code).
Example:
<PosizioneRischio>
<ParametriInput>
<Utente>Utente</Utente>
<Input>
...
0
votes
2answers
35 views
MVC 3 - passing two parameters from view to controller
I have an issue with passing 2 parameters from view to controller, when assigning them as a button. If I use this code in my View:
@using (Html.BeginForm("Edit", "Shift", new { lineName = item.Line, ...
0
votes
1answer
32 views
How can i return two view from an action?
How can i return two view from an action?I tried as below but i got error.
public ActionResult Page()
{
//LINQ x expressions
//LINQ y expressions
if(Request.QueryString["type"] == "x")
...
0
votes
2answers
43 views
MVC 4 How to pass an object to partial view when list item is clicked?
This is a controller
public class ProductController : Controller
{
//
// GET: /Product/
public ActionResult Index(int id = 0)
{
return View(DALCategory.GetCategoryList());
...
1
vote
2answers
22 views
Use ToString() with @Html.DisplayFor
Why can't I use ToString("#.##") with a @Html.DisplayFor such as:
@Html.DisplayFor(modelItem => modelItem.Balance.ToString("#.##"))
0
votes
4answers
40 views
How can I add “#” in my url when using html.ActionLink
This is my html.ActionLink:
@Html.ActionLink("Comment", "Comment", new { id = item.NewsId, title = item.Title + "#disqus_thread" })
it gives me following url:
...
0
votes
1answer
12 views
How to stop application if Membership database is not available
I am using SimpleMembership with success. But now I would like to add some robustness so that when the database is not available, I can display a web page that alerts users about the problem. However, ...
3
votes
2answers
41 views
how to check the contents of a viewbag in razor
Is there any way to check viewbag content, what the viewbag has of data in the view.
my controller send possibly new data each time i click on button and send it with the same named viewbag.
here my ...
1
vote
1answer
38 views
MVC4: Child Model in partial View has same ID ( creating a comment for an article)
I have an Article Model and a Comment Model.
The ArticleDetail View shows the Article, the Comments to the article and a formular to create a new comment.
When creating a new comment for an article, ...
1
vote
3answers
23 views
WebImage.GetImageFromRequest returns null when file is present
My WebImage.GetImageFromRequest returns null, even when there is a file. How can this be?
The cshtml code:
@{
if(IsPost)
{
if(Request["upload"] != null)
{
image = ...
1
vote
1answer
31 views
Display query results efficiently in Razor
I've created an ASP.NET MVC 4 Web Application with Visual C# and with the "Razor" option
HomeController.cs
public ActionResult Tasks()
{
ViewBag.Message = "Tasks";
string ...
1
vote
2answers
42 views
Html.BeginForm is not sending back the whole data
I have asked very similar question but now I narrow down the external factor and now I hope that someone would be able to point me what I am doing wrong and why I don't get the expected result.
In my ...
2
votes
2answers
24 views
Razor multiline syntax for grid column format
I have a WebGrid that I am trying to define in an MVC4 razor view. I would like to define a column format using multiple lines for readability. The following works, with the format on one line:
...
0
votes
0answers
11 views
Is it possible to combine different type of Toolbar definition in Kendo Grid?
I have some old code that defines a toolbar in the grid like this:
@(Html.Kendo().Grid<Object>().Name("SomeGrid")
.ToolBar(toolBar => toolBar.Custom()
.Text("<i ...
0
votes
0answers
43 views
Partial views don't return all data that
I'm experiencing a strange problem with a form created with Razor in asp.net MVC 3 project. My main view is strongly typed of type :
@model List<DataAccess.MCS_DocumentFields>
I have four ...
0
votes
1answer
35 views
How to add an image to a table cell in iTextSharp using webmatrix
I have made a table with cells and interested in having an image in one of the cell.
Below is my code:
doc.Open();
PdfPTable table = new PdfPTable(2);
table.TotalWidth = 570f;
table.LockedWidth = ...
0
votes
3answers
35 views
All radioButtons are false at the view
@Html.RadioButton("smth",true)
This row at the page looks like UNCHECKED radioButton. Why?
0
votes
1answer
46 views
@Html.Editor showing odd results when using reflected properties
I'm using a generic Razor view to allow any entity framework object to be edited. Here's a cut down version of it:
@model Object
@using (Html.BeginForm())
{
@foreach (var property in ...
0
votes
1answer
29 views
How to use ScriptManager with Razor in MVC 4?
I used ScriptManager in .aspx page to Maintain URL history in .Net i.e.
on aspx page i put this script after form tag
> <asp:ScriptManager runat="server" ID="ScriptManager1" ...
0
votes
1answer
7 views
System.Web.Helpers Namespace not working in WebMatrix
Im trying to use the WebImage object type in WebMatrix 3.
It works fine in the .cshtml file, but when doing the same thing in a .cs file it can't find the type.
I've tried adding the Using ...
0
votes
1answer
31 views
MVC4 Razor Page not showing content
I am new to MVC4 and Razor syntax. I apologize upfront if this is too simple a question, I haven't been able to find the answer searching...
I am wanting to do something along the lines of the ...
0
votes
1answer
23 views
RadioButton doesn't get current value from model
My model is IEnumerable<> of RatingSource.
public class RatingSource
{
public int Id;
public string Source;
public bool IsActive;
In the view I want to see 2 ...
0
votes
1answer
40 views
Search a text from a list containing texts separated by “,”
I have the following which contains a list of names
var myList = @Html.Raw(new JavaScriptSerializer().Serialize(Model.Names));
I have a textbox in which the user enters a name and I have to search ...
0
votes
1answer
18 views
Validation prints whole regex - change this?
I have some validation in a view model:
[Required(
AllowEmptyStrings = false,
ErrorMessageResourceType = typeof(Resources.ValidationMessages),
ErrorMessageResourceName = ...
0
votes
2answers
26 views
Partial editor to show single property of model
I have my model as follows
public class PlaceOrder
{
public int orderCode { set; get; }
public string Order_ID { set; get; }
public int orderDetailCode { set; get; }
...
0
votes
2answers
30 views
Incorrect Razor ternary syntax
Im copied this ternary from another SO post:
<td><input type="button" value="Delete" class="DeleteButton" id="@("D" + param.QueueId)" @{ if(param.StatusId != 1) { @:disabled="disabled" } } ...



