Search Results

1
vote

What is the best data access paradigm for scalability?

Use whatever works for you. These are all easiest to set up if you already have a fairly normalized database (ie, good definition of primary keys and foreign keys). However, if you've got data that …
0
votes

Passing data between a parent app and a virtual directory

You can do a server-side HTTP Request, it looks something like this in C#: HttpWebRequest req = (HttpWebRequest)WebRequest.Create("/ASPSession.ASP?SessionVar=" + SessionVarName); re …
0
votes

MVC C# custom MvcRouteHandler - How to?

You should be able to do this with ASP.NET MVC's default template, I'm doing something similar. Just build your routes as {language}/{controller}/{action}/{id} Just set a default route that …
2
votes

ASP.NET MVC and JQuery get info to controller

It has to do with the way you're structuring your request. Your JQuery call is sending the data to the AddLink action on the User controller as POST data, which means in your C# code, you'll access …
0
votes

ASP .NET and C#

You should be fine to learn C# while working on an ASP.NET project. I will advise that if you're already pretty familiar with the Web, you'll probably find working with the ASP.NET MVC framework mo …
0
votes

What is the best way to access ASP.net Session Data using JavaScript?

There are two alternatives I can see: Generate a JSON object of the Session data you want the JavaScript to have access to. Send this to the browser either during the initial page gen …
0
votes

How do I merge aspx pages MVC?

While you probably should have a Master Page that can contain your sidebar (this is how I do things), you could also have sidebar as a View User Control, which can be rendered using the Html.Render …