ASP.NET Web Pages is a page-centric lightweight development framework from Microsoft for building dynamic web sites.
3
votes
2answers
45 views
Why won't my $.ajax call return a json object from a cshtml file?
I have this jquery that uses ajax in an attempt to return a json object, but I am no pro at ajax, though I have used it before with json, only I was loading a json file and not trying to return a ...
1
vote
1answer
40 views
Why won't my calls to date.ToString() and str.Length in C# work together?
I realize that this is probably going to be a newbish question, but no matter what I try or lookup, I can't seem to find any answer to why I can't trim some strings like I would want for a json ...
0
votes
1answer
34 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) {
...
0
votes
1answer
55 views
Set global variable at compile time from cshtml page
In a ASP.NET Web Pages 'site', created with webmatrix (razor template, c# code).
Can I set a variable in the cshtml template that would be 'global' (AppState) WITHOUT executing that page?
I know ...
-1
votes
1answer
50 views
Can anyone explain ASP.NET Web Pages Life cycle ? (Razor syntax)
I want to know the life cycle of ASP.NET Web Pages using razor syntax.
From questions asked on life cycle of ASP.NET MVC Controller on Stack Overflow, answers suggest that its is explained at
...
0
votes
0answers
22 views
Why does moving my script references to the bottom of _SiteLayout.cshtml cause the tabs to no longer work?
I'm using jQuery-UI tabs in my site. I've got this:
<script src="~/Scripts/jquery-2.0.0.min.js"></script>
<script src="~/Scripts/jquery-ui-1.9.2.min.js"></script>
<script ...
1
vote
2answers
83 views
How can I use the minimal amount of Twitter Bootstrap to get the fluid benefits?
I want my sites to work well on all form factors (phones, tablets, desktop/laptops) and orientations (vertical and horizontal). Twitter Bootstrap's "fluid" example seems great for this. I have to say ...
0
votes
0answers
210 views
Win32Exception (0x80004005): The wait operation timed out
I'm running an ASP.NET Web Pages page that upon initial load pulls a list of items from a SQL server. This query runs in a second or so and loads the page within 2 seconds. The return is about a 1000 ...
0
votes
2answers
44 views
Error while using ColumnAttribute for an EF Model
I've extended my ASP.Net Web Pages application with the Entity Framework, which I have downloaded in Visual Studio via NuGet. Now I get the following error, while trying to assign a different column ...
0
votes
1answer
48 views
When programming with Razor code extension .cshtml is shown
I am new to web pages.
I made a ASP.Net website(Razor) but here WebSecurity uses cookies and I didn't wanted to use inbuilt features..
Hence I made a new ASP.NET Empty WebSite and then added a ...
0
votes
5answers
55 views
Why is my table not displaying with a border?
I amended my Site.css file, which is referenced by _SiteLayout.cshtml, to try to give table contents a border:
table {
border-collapse: collapse;
border-spacing: 0;
margin-top: 0.75em;
...
0
votes
2answers
60 views
How can I sort my string array from .GetFiles() in order of date last modified in asp.net-webpages?
I have seen a really close example here:
Sorting Files by date
But I am new to LINQ and couldn't get it to work (not sure I understand the DirectoryInfo or FileInfo classes).
Here are the necessary ...
1
vote
1answer
43 views
linq to entities - updating tables with new values not working
The code below is updating the correct values into the OBJECT_TYPES table, but the OBJECT_ITEMS table is being overwritten but I am not sure why. Can anyone help?
var templateId = ...
2
votes
1answer
152 views
How can I access a single XML element's value using C#.net web-pages with WebMatrix?
I've looked at a lot of resources, done a lot of research, and tried many "best-guesses" to access a single element at a time using WebMatrix with C#, web-pages, however nothing I am trying is getting ...
2
votes
3answers
118 views
Is there an easy way to store an array into a single column in a SQL Server CE database?
I have reviewed possible answers here (for PHP, I think): http://www.lateralcode.com/store-array-database/ but I am unable to find a C#.net version of serialize/deserialize.
Would this be done the ...
4
votes
1answer
42 views
Is using the Cache in WebMatrix user-specific or application-specific?
If I were to use AppState variables as opposed to Session variables, I would not be storing data user-specifically. That is, if one user changes an AppState variable, it remains changed for all users ...
5
votes
1answer
129 views
How can I get started using OpenID/OAuth with my WebMatrix site?
If I misuse or confuse the terms OpenID and OAuth, I apologize, I am still new to this whole decentralized login process.
I have been trying for days now to get my site (built in WebMatrix) to ...
-1
votes
2answers
148 views
Web API with ASP.NET Web Pages Framework [closed]
Is it possible to use Microsoft's Web API with my ASP.NET Web Pages framework website? I love the idea behind the Web API, however, to be honest, I don't like MVC - more specifically, MVC and Web API.
...
2
votes
3answers
244 views
How does it work to use “Response.Redirect” from a Razor Web Page When I Haven't Instantiated “Response”?
My limited knowledge concerning programming entails that in order to use a non-static method, you need to first create an instance of the class. In order to use static methods, you simply use the ...
0
votes
1answer
47 views
How to Cache Multiple Versions of a Page using Razor Dynamic Query & WebCache
I decided to implement caching to improve the performance of the product pages.
Each page contains a large amount of the product's images.
I created the following code in a Razor view.
@{
var ...
0
votes
1answer
60 views
Response.Write against @variable when outputting json
ASP.NET Web Pages 2 sample api.cshtml file:
This code return proper json that is recognized by a jquery $.ajax call:
@{
var data1 = AppFunctions.PerformSelect(AppState["U1select"].ToString());
...
0
votes
0answers
109 views
How to pass parameters in ASP.NET Web Pages 2 query command for AS/400 oledb?
While reading ASP.NET Web pages info it saya that in order to pass parameters to the sql this works:
var db = database.open("myconnectionstring");
var strSQL = "Select * from mytable where ...
1
vote
1answer
110 views
What kind of code i can include in global.asax and _AppStart.cshtml in a Web Pages v2 web site?
I have read many articles and documentation and still its not clear to me what i can include in the global.asax and _AppStart.cshtml files.
I tried putting simple things like
@{
var rlist = new ...
1
vote
1answer
109 views
How to add Web Pages 2 with razor syntax in an empty web application project in Visual Studio 2012?
I want to create simple Web Pages 2 applications.
I want to use the File->New->Project->Empty Web Application and not the File->New-Web Site.
After i create a new empty web application i ...
0
votes
2answers
80 views
How to use existing 3-layered logic in ASP.NET MVC and ASP.NET Web Pages 2 projects?
I have 5 basic projects that need to be part of multiple applications. WinForms, ASP.NET, WPF depending on the needs we have.
These Projects are:
Company.Business - Business Logic DLL
...
1
vote
1answer
12 views
What is the microsoft recommended page assets organization for site?
I've found that when making a new site I get a structure like this:
Content\
themes\
base\
images\
jquery.ui.all.css
...
Site.css
Controllers\
Models\
...
1
vote
1answer
22 views
Razor2 WebPage post document.createElement
I am working on a Razor 2 Web Page form. Some elements, to wit: a series of select elements, are created by jQuery and appended to a div based on checkbox selections. Those elements appear on the ...
0
votes
1answer
65 views
AJAX in ASP.NET web pages 2
I need to build fast some simple web applications with simple CRUD operations using ASP.NET
My straight choice would be to go with standard ASP Web Pages 2 and i will.
Most of them will be 1-2 pages ...
0
votes
0answers
47 views
PRG pattern or anything similar in ASP.NET WebPages
The question is centered around this concept:
A website based on asp.net-webpages includes a form that
when submitted executes a page, which includes the WebMail Helper.
That page then requests the ...
0
votes
2answers
153 views
FileUpload does not work with Razor Webpages 2
I have tried to install MVC3, MVC4 and Webpages 2 on the IIS and it keeps telling me that @FileUpload.GetHTML does not exist...
Server Error in '/' Application.
Compilation Error
...
0
votes
2answers
235 views
Could not open file through web page which is under subfolder under root directory in asp.net
I have one issue in my webpage. Actually I have developed asp.net 3.5 website. I have created a webpage named HR.aspx under Sub Directory in my project root directory.
Webpage Location
...
1
vote
0answers
73 views
Why is SQL CE Toolbox failing to parse my csv file?
SQLCEToolbox looks very promising.
I installed it, opened VS 2012, selected Tools | SQL Server Compact Toolbox, quickly and easily set up a connection to my sdf database, which I had (also quickly ...
1
vote
1answer
135 views
How to populate SQL Server Compact/SDF tables from a text file in an ASP.NET WebPages site?
I've created a database in my asp.net web site (using WebMatrix).
The table contents will be static - the user will never change them or add records.
The table contents live right now in a text ...
2
votes
1answer
65 views
How can I tell WebMatrix where to put the project?
The problem with using Visual Studio to create a web site project (File | New Website | ASP.NET Web Site (Razor 2)) is that it gives you no option to start off with an empty site. The problem with ...
0
votes
0answers
37 views
How can I ensure a page (virtual file) exists before I call RenderPage?
I struggle to find a way to get RenderPage to fallback to an alternative page if the original page is not found. The methods I've found so far are internal and not accessible.
if ...
1
vote
1answer
43 views
Why is my png not displaying on my WebPages site?
I've started my asp.net WebPages site using the "Starter Site" template. It contains a layout page, _SiteLayout.cshtml, that is referenced in Default.cshtml.
In _SiteLayout, there is this HTML:
...
1
vote
1answer
116 views
Razor 2 with Web Pages 2
I cannot get Razor 2 view engine to work with my web pages project. I installed Web Matrix and everything but it's obvious that it's the Razor 1 engine that is used beacuse the tilde feature ...
0
votes
1answer
48 views
Use CreateInstanceFromVirtualPath in MVC and WebPages 2
In WebPages Razor v1 it's possible to call functions cross cshtml-pages using this syntax:
@{
dynamic hlp = WebPage.CreateInstanceFromVirtualPath("/newhelper.cshtml");
}
@hlp.SomeHelper("foo")
...
1
vote
1answer
57 views
Nesting razor C# in JavaScript
I'm nesting razor C# in JavaScript and I'm calling this function inside a button but when I press the button nothing happens. What am I doing wrong?
<script>
@functions{
public void ...
2
votes
4answers
115 views
How simple is Path.GetFileName?
In C#.net if I were to write this method:
public static string returnFileNameOnly(string returnString)
{
string val = returnString.Substring(returnString.LastIndexOf("/"));
return val;
}
...
1
vote
1answer
48 views
It is possible to use an HTMLHelper not only for an attribute value but instead for the name of the attribute?
I want to generate depending on what I'm passing an specific attribute with his value. This is how I want to use the helper:
<sometag @PossibleHelper(parameter)/>
After PossibleHelper do his ...
1
vote
1answer
138 views
Error in for each loop vb.net razor 2 (ASP.NET web pages)
I have this error in my vb.net razor 2 code "Object variable or With block variable not set." Line 11
Line 9: Dim i = 0
Line 10:
Line 11: @For Each color In ...
1
vote
1answer
65 views
How to convert C# razor code into vb.net Razor Code Block
I need help converting this c# razor code into VB.NET razor code.
PageData["Colors"] = new[]{"LightCyan", "Gainsboro","Chocolate"};
Thanks in advance.
0
votes
1answer
94 views
Will the 1140px CSS Grid System work if I need to keep the middle of my site always there - in the middle?
I need to create a site (one page of original content) that will be, if I use the 1140px/12 column system (http://cssgrid.net/), 3 columns on the left, 6 in the middle, and 3 on the right.
The left ...
1
vote
1answer
74 views
How to create vertical “panels” for hosting controls in an asp.net web page?
I need to create vertical strips on both sides of a web page to house/host controls (comboboxes, checkboxes, or their asp.net equivalents, and the like). These two strips (somewhat akin to an Outlook ...
1
vote
1answer
47 views
RIA Services error but not used
I created an ASP.NET MVC WebPages application. Works perfectly local. Works perfectly on the server when I install it as a website. However when it is installed as an IIS application (level below ...
3
votes
1answer
171 views
How much can I trust ASP.NET Request Validation with Web Pages/WebMatrix vs. XSS?
I have read (and am coming to terms with) the fact that no solution can be 100% effective against XSS attacks. It seems that the best we can hope for is to stop "most" XSS attack avenues, and probably ...
2
votes
2answers
411 views
How do I create an asp.net web page/site project?
I'm using Visual Studio 2012 Ultimate in Windows 8.
I'm confused as to how to start an asp.net web page web site. Is it via Visual Studio, by selecting File | New Website | ASP.NET Web Site (Razor ...
1
vote
1answer
66 views
How to receive a json string after a jquery post in WebMatrix?
If I have the following post call:
$('#json_form').submit(function (event) {
event.preventDefault();
var url = $(this).attr('action');
var datos = {
...
1
vote
1answer
198 views
How to make an editable table using ASP.NET Web Pages?
I'm fairly new to html development and don't know how to tackle this problem. I need to create a table with some editable cells. Then I need to update a specific row in a database table based in the ...

