Tagged Questions
0
votes
1answer
32 views
Download Excel file via AJAX MVC
I have a large(ish) form in MVC.
I need to be able to generate an excel file containing data from a subset of that form.
The tricky bit is that this shouldn't affect the rest of the form and so I ...
2
votes
0answers
24 views
How do I find out what the ErrorMessage parameters are for a validation block?
I'm looking at an example MVC project and working through the code. The models have validation blocks on them and while they're easy enough to read, like this one...
'
[Required]
...
0
votes
1answer
29 views
MVC AJAX Post one element from Model
I have a Model that looks a little like this:
Public Class MyModel
Public Property ID As Integer
Public Property Name As String
Public Property TypeID As Integer
Public Property Description As ...
0
votes
0answers
25 views
MVC Multiple FileUpload with a dynamic model
I'm afraid I'm totally new to MVC and almost as new to programming in general.
I have been making a questionnaire using MVC. Each user, upon logging in, is given a specific questionnaire generated ...
0
votes
1answer
37 views
Conditional Highlighting row in MVC Razor VB.NET
I want to change the background color of a row based on if the condition is true. i have tried the following but it does not like the syntax. I have tried a few different ways but it does not like any ...
0
votes
1answer
121 views
MVC 4 Session Timeouts, Ajax polling
I'm looking for a way to prevent the SessionState from refreshing when I make an AJAX post to a controller.
This controller returns a JSON true/false object if the SessionState has expired.
Public ...
0
votes
2answers
46 views
LINQ - UNION - remove duplicated based on a single column
I have this linq query where i want to remove all the duplicates based on the column MAILADR (but keep the other columns):
Dim dataObject = (From a In db.TABLE1 Select New With {
.ID = ...
-2
votes
0answers
29 views
how to call a outlook function in outlook htmlbody by clicking on hyperlink in outlook addin application [closed]
how to call CreateOutlookContacts function on click on activation link ..
outlook function code is given below
mailItem.HTMLBody = "
Hi,
Welcome in Constacts World....
Please click on below ...
0
votes
2answers
46 views
MVC Model Setup
I am using pure ado.net for data access. I want to know best practice to do the following.
I have a Generic Product Class....
Class ProductViewModel
Property ItemID as int
Property Title as ...
0
votes
1answer
30 views
Linq To Update One Complete Row
So I would like to update/replace one complete row with the data I have.
Instead of doing
entityA.Name = entityB.Name
I would like to say something like entityA = entityB, where entitiyB is same as ...
2
votes
1answer
52 views
Using in Razor VB.net MVC not work as expected
I'm not sure why this syntax complain error "Enter is not declared. May be inaccessible due to protection level" and must put "@html(" to get rid the error.
This block complain error
@Using ...
0
votes
1answer
82 views
Converting C# Razor Syntax to VB.NET Razor
Can someone please help me converting the following razor syntax to it's equivalent vb.net razor syntax?
@(Html.Kendo().Menu()
.Name("menu") //The name of the menu is mandatory. It specifies the ...
0
votes
1answer
52 views
HandleUnauthorizedRequest goes in InfiniteLoop
I have following two actions that keeps calling each other and goes in infinite loop. what am i doing wrong?
Public Overrides Sub OnAuthorization(filterContext As System.Web.Mvc.AuthorizationContext)
...
0
votes
0answers
76 views
How to fix my ASP.NET Webforms structure?
I have a problem with the structure of an old asp.net webform page. Now i want to convert this into an MVC page, because i think there a several things which does MVC automatically...
Here are the ...
2
votes
1answer
41 views
Auto set ASP.Net App_Sprites permissions
I'm using the Image Optimization kit for ASP.Net and that needs the App Pool User to be able to write to the App_Sprites folder which I've already figured out how to do.
But when I'm publishing a new ...
2
votes
2answers
148 views
Offline and online application using asp.net mvc
brief history of my project:
2 versions of application, one running in windows form, another running in the web using asp.net
current task: to revamp the project to use asp.net mvc 4 to use only one ...
0
votes
1answer
32 views
New area results in 404
I've read every thread/question on this topic but never found an answer.
In my MVC4 project I've just added a new area called "Admin". I see that AdminAreaRegistration.vb has been generated by ...
0
votes
1answer
56 views
T4mvc for VB Breaking Everything
I've grown an unhealthy dependency on T4MVC since it's such an awesome library i have been using it for years in c# and have never had much of a problem with it
I am working on a new MVC 4 project ...
0
votes
1answer
50 views
.Net MVC, High availability byte buffer?
I’m looking for direction on an unusual project. I have this 1GB binary file that contains random bytes that gets refreshed every 24 hours. I have a MVC website that has several functions that need ...
0
votes
1answer
48 views
Unable to cast object of type 'ItemStore.Item' to type 'System.Collections.IEnumerable'
Having a problem displaying the list of items in the view. Can't convert it from a ItemStore.Item to IEnumerable, I've also added ' @Method List(Of ItemStore.Item) ' to list.vbhtml and it can't ...
0
votes
1answer
22 views
Populating Multiple Identical Models with MVC
I have a page where I have text boxes to fill in information for 10 players (Name, Character, Kills, Deaths, Assists), and once I click 'Save' on that page, I want to populate a player Model for each ...
1
vote
3answers
59 views
My form has two submit buttons for two decisions. Should it be one form or two?
I want to know which decision my user chooses.
Method 1
HTML
<form method="post">
<input type="submit" value="Accept" name="decision" />
<input type="submit" ...
1
vote
1answer
573 views
ASP.NET MVC 4, multiple models in one view?
I'm working on a little project in which we have a table of engineers, a table of projects, and a table of elements. engineers are assigned multiple elements, and elements can have multiple projects. ...
0
votes
0answers
109 views
Razor model binding over multiple forms
I am having some trouble getting a model to bind in the way I need. I require to display a series of records only one of which can be edited at a time. Presently I am displaying a series of forms ...
0
votes
0answers
60 views
WebClient.UploadValues vs. GetRequestStream
I have an ASP.Net MVC project that accepts POST requests with the following procedure:
<HttpPost()> _
Function ProcessClaim(ByVal claim_request As String) As ActionResult
...
0
votes
1answer
84 views
How can I implement a form (login) that is visible on every page?
Suppose I want my _Layout to include a login form instead of the default separate login view. How should I do this? Searching around has given me very vague/uncertain answers.
...
1
vote
1answer
101 views
How can I add mvc.net to an old vb.net site
this is my first question. The company I work for uses a pretty large and old vb.net site. We were hoping to integrate mvc.net into the site. I've been following a book "Pro ASP.NET MVC 2 Framework" ...
0
votes
1answer
28 views
MVC RedirectAction From Create To Edit
<HttpPost()> _
Function Create(ByVal cbadata As CBAData) As ActionResult
If ModelState.IsValid Then
db.CBADatas.Add(cbadata)
' ...
0
votes
1answer
9 views
ActionLink Error When The Function Uses BEANs
I am getting the following error.
"Sorry - An error occurred while processing your request."
I am trying to add a simple ActionLink to go back to a list of categories.
The code in view is:
...
5
votes
4answers
157 views
When I submit HTML characters in my form, why does ASP.NET throw an internal server (500) error?
When I put in HTML characters in my form, such as <br />, ASP.NET throws an internal 500 exception as described here.
A potentially dangerous Request.Form value was detected from the client ...
0
votes
1answer
139 views
MVC 4 VB Additional view data
Trying to find help for this problem has taken me to a whole new one: complete lack of ressources, books and samples vor MVC 4 in VB.NET. I am having to choose between learn by experience (and the ...
1
vote
0answers
57 views
How do I write VB Inline html templates in Razor?
I am struggling with writing in-line templates in razor vb.
Here is a sample forms c# version. Can someone translate to RAZOR vb?
<%Html.GridView<Employee>(
this.ViewData.Model,
...
1
vote
1answer
88 views
Why isn't my razor helper being executed inside a Using statement?
This view:
@Using Html.BeginForm
SimpleMessage
End Using
@Helper SimpleMessage()
@<p>This is a simple message</p>
End Helper
Results in
<form action="/Controller/Action" ...
1
vote
1answer
45 views
What should I return to the view to confirm that a a process has been successful?
Suppose I have a registration page. It's a simple view with just "Name" and "Email" input boxes. When the user submits their details, the controller will create the user in the database and then ...
1
vote
2answers
88 views
How to use DropCreateDatabaseIfModelChanges in VB.net
How can I use DropCreateDatabaseIfModelChanges in a VB.NET application in an early development state where the model changes quite often. I know I have to add those lines to Global.asax - but I only ...
1
vote
2answers
187 views
Example SNS subscription confirmation using AWS .NET SDK
I am trying to figure out how to use the AWS .NET SDK to confirm a subscription to a SNS Topic.
The subscription is via HTTP
The endpoint will be in a .net mvc website.
I can't find any .net ...
0
votes
1answer
406 views
How to access a valuer of GridView row based on checkBox in ASP.NET
Hi I have a GridView with a multiple rows and columns. I've also added a checkBox in a grid view..
But now I'm having troubles of accessing the values of a particular row(s) whose checkBox(es) are ...
1
vote
1answer
63 views
Single use anonymous class in VB.NET?
I have a question about classes which sort-of relates to MVC because of the vast number of single-use models I seem to be creating.
I have an MVC Controller with a function that takes a model and ...
0
votes
2answers
119 views
Convert asp.net C# to vb
I am trying to convert this code, but getting some error this is the main link of the code.
I am getting these 2 errors:
Type "domainroute is not defined
and
'optional' is not a member of ...
0
votes
2answers
84 views
MVC DropDownList Help - Select not working
I am new to MVC and working on an already existing project. I am simply trying to fill a dropdown to allow for changing of order. When the page loads I need the dropdown selected value set.
The ...
2
votes
2answers
221 views
Best MVC way to handle multiple requests between view and model
I have a .net application with a Form layer, a DB model layer (entity framework) and a Controller layer between this two layers.
I need to handle this situation:
User presses a button to edit some ...
1
vote
1answer
50 views
Ignore routes in vb.net?
I need help with converting this to vb.net...
routes.IgnoreRoute("{*allaspx}", new {allaspx=@".*\.aspx(/.*)?"});
routes.IgnoreRoute("{*robotstxt}", new {robotstxt=@"(.*/)?robots.txt(/.*)?"});
Any ...
0
votes
1answer
51 views
Nested Object Scaffold ASP.net MVC 3 VB.net
I am complete beginner with ASP.net and VB.net, I created two classes one for Teams and another for Fixtures which will take in 2 teams.
Imports System.Data.Entity
Public Class Team
Public ...
2
votes
1answer
230 views
ASP.NET MVC 4 Model Encapsulation Rendering View Errors
I need to pass multiple models to a View and I would like the View to be strongly typed (so if I can help it I would like to do this without the use of passing each one of my models to a ViewBag).
...
1
vote
2answers
156 views
Using Regex to validate the number of words in a text area
I am attempting to write a MVC model validation that verifies that there is 10 or more words in a string. The string is being populated correctly, so I did not include the HTML. I have done a fair ...
2
votes
4answers
746 views
App_Code required for ASP.NET MVC 4 HtmlHelper Extension in VB.NET?
I've been spending the better part of two hours trying to figure this out. Here goes:
I just want to create an HTMLHelper extension method. This has been done many times before, and I know I'm ...
1
vote
2answers
183 views
html.textbox naming asp.net mvc
I'm trying to iterate through a database and create a textbox for each record. Everything works just fine until I try to use the information in the controller. How do I pass this information back ...
0
votes
1answer
215 views
How to post back a nested model in asp.net mvc
First of all sorry if the question is misleading but I don't really get how to ask the question so I will try to explain myself with examples.
If you can suggest a better title for the question I ...
2
votes
2answers
248 views
Second MapRoute in asp.net MVC 4 doesn't work with parameters
i want to add a second MapRoute to my first MVC 4 Project, well i added this code in Global.asax.vb
routes.IgnoreRoute("{resource}.axd/{*pathInfo}")
routes.MapRoute( _
"Math", _
...
4
votes
1answer
62 views
vb.net error using interface
I am getting this error
"Error 19 Class 'LegacyRouteHandler' must implement 'Function
GetHttpHandler(requestContext As RequestContext) As IHttpHandler' for
interface ...




