31 questions
0
votes
1
answer
916
views
How to insert a UserControl inside Accordion in asp.net?
I have a user control that looks like this:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ProfileGroupComponent.ascx.cs" Inherits="Reports.Controls.ProfileGroupComponent" %>
<...
1
vote
0
answers
65
views
Switching between ViewEngines with partial views doesn't find the view to display
I have a legacy application that was made with Web-Forms, and trying to use asp.net mvc to render a content inside a partial view. Following @ScottHanselman post of ...
0
votes
0
answers
42
views
Is there a non-3rd party component ($$$) way to display the contents of an Excel file in a Web API page and retain the .xlsx file's formatting?
I need to create a web app that will display data from spreadsheet (.xlsx) files. Preferably, this will be a Web API project, because the "spreadsheets" I need to host there lend themselves very ...
1
vote
1
answer
58
views
ASPX engine removing name property from form element
I have an application which has ASPX & MVC pages mixed is same project due to some reason. The old aspx pages used to automatically render name element in the html generated e.g.
<form id="...
0
votes
1
answer
1k
views
WebForms view engine is slower that Razor view engine in MVC4
I am still a beginner to MVC and I was trying to understand why developers seem to prefer Razor engine over WebForms engine in ASP.Net.
My question: Is it because Webforms engine is slower than ...
1
vote
1
answer
387
views
How to Plot chart from two different webform Submission data And Wand to Display annotated point
![ Chart is plotted on View of webform submission type ][10]
enter link description here
Hi,
I'm using Charts, high-charts, webform, view modules to displaying a chart in drupal 7.
I need some ...
0
votes
1
answer
623
views
Custom and Razor view engine mess while combining the two
I have a asp.net web api application that also renders some razor pages.
By default, there are two default engines(webform\razor) and I had no problems rendering my razor pages.
Now I need to support ...
0
votes
0
answers
295
views
Webforms/MVC hybrid aspx error page being rendered through Razor?
We have a legacy webforms site that we have "successfully" integrated MVC and Web.Api into. If there are no server errors then all is good, pages render as expected. However if an MVC page gets a ...
5
votes
4
answers
871
views
Is it worth migrating an existing asp.net-mvc project with webform view engine to razor?
I have a large asp.net-mvc web site . I recently upgraded to MVC 4 but one thing i am debating is it worth it to migrate to razor engine. I see there are tools to "auto" upgrade but i am trying to ...
3
votes
3
answers
5k
views
Choice of View Engines in MVC4?
I am developing a mobile application using ASP.Net MVC4.0, JQuery Mobile, HTML5.
As I am new to ASP.Net MVC, I am not sure whether to use Razor(.cshtml) or webForm(.aspx) view engine.
Can anyone ...
0
votes
3
answers
3k
views
How to Create ASPX Pages in MVC 4
I used to develop with ColdFusion for a while, but then left the web development arena for a while. I'm back, now, and have been hired as an intermediate (right above entry)-level web developer. My ...
0
votes
2
answers
151
views
View engines for non-mvc web application
I'd like to achieve the MVC View Engine behavior in an web forms application. To register a mobile channel in MVC I normally would do something like this
public static List<string> UaSurfpads =...
0
votes
1
answer
2k
views
Post HTML encoded Form data to server
I'm currently using MVC 3 (WebForm view engine) and have a form that shows user comments.
If I have a comment which has an ampersand (&), <%= Html.Textbox() %> will encode it as &. ...
6
votes
1
answer
11k
views
Razor view Type does not inherit from 'System.Web.WebPages.WebPage'
I have a problem with configuring asp.net mvc application:
[HttpException (0x80004005): Type 'ASP._Page_Currency_Index_cshtml' does not inherit from 'System.Web.WebPages.WebPage'.]
System.Web....
-1
votes
1
answer
1k
views
How can I add a checkbox in mvc3?
I want to know that how to add the checkbox in the mvc3 asp.net C#.
I'm using Aspx view engine.
I have to add mutiple checkboxes and have to save the data of that checkbox which are selected true.
How ...