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 …
6
votes
How to conditionally enable actions in C# ASP.NET website
Why not just use the web.config and the System.Configuration functionality that already exists?
Your web app is going to parse web.config on every page load anyway, so the overhead involved …
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 …
1
vote
regex replace method
To expand upon annakata's answer:
In regular expressions the '^' character means "match at the beginning of the String", so if you wanted "U.S.A." to be replaced, it would have to be the fi …
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 …
1
vote
Is there a .Net equivalent to Apache Hadoop?
Recently, MySpace released their .NET MapReduce framework, Qizmt, as Open Source, so this is also a potential contender in this space. …
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 …
