0
votes
1answer
63 views
“DateTime.Now” - why does it return GMT?
I am running on a Win2003 server, TimeZone set to (GMT -06:00) Central Time. I am programming with VS.NET 2005, f/x 2.x. When I execute the following code I do not get the expect …
0
votes
7answers
43 views
How to Track F5/Refresh in ASP.Net
I am using VS 2005, C# 2, ASP.Net 2.0
I am unable to find out how to track that user pressed F5/Ctrl+F5/ Open a new Window(Ctrl + N) in ASP.Net.
I know that there is a Page.IsPost …
0
votes
1answer
17 views
Is it possible to post only the content page and keep master page as is?
I have one master page which applies to all pages in this website. On some of the button click or user events, I want that only content pages are posted back and all the controls o …
1
vote
4answers
53 views
C# and JQuery, strange behaviour on postback
Hi,
I have an asp.net web site in which I'm trying to insert some ajax call to gain some loading time on page opening.
SCENARIO:
On page A.aspx I use JQuery $(document).ready() ev …
2
votes
9answers
75 views
What is the best tool for Test driven Development using asp.net 2.0?
We are using Asp.Net 2.0 and planning to move to TDD so that middle tier can be developed and tested while others in the team take care of UI and DataBase area.
Can anyone kindly …
1
vote
3answers
66 views
A minimal MVC setup for ASP.NET 2.0
I have to migrate a web application I made with ASP.NET MVC to a regular Visual Studio 2005 ASP.NET Web Forms based website.
I've looked at things like MonoRail, but it's too diff …
0
votes
1answer
19 views
Problems with Viewstate corruption.
I'm getting errors in a few of my pages:
Error Message: Invalid character in a Base-64 string.
Error Source: mscorlib
Error Target Site: Byte[] FromBase64String(System.String)
Er …
0
votes
2answers
78 views
What is best approach on designing this abstract class? (Part 2)
Hi there
I have abstract class called Tenant and Customer. The tenant in this case is like owner of the application for multi tenant application model.
The relationship between …
1
vote
1answer
15 views
What version of StructureMap can I use in webform app (Net 2.0)
Hi Guys,
I am bit confuse. I would like to use StructureMap in my webform app, but it is still Net 2.0. I am not really sure which version I should use.
Anyone using Structure …
1
vote
1answer
45 views
Can an application “die” without passing Application_End or Application_Error?
Hi,
The current application that I'm working on seems to recycle the application pool very often, but when it ends, id doesnt pass Application End or Application Start.
This is …
0
votes
1answer
32 views
Areas feature in rails
Asp.net mvc 2.0 is introducing Areas feature. I am wondering what is the equivalent of asp.net mvc areas in ruby on rails framework? How rails handles the modules/sub sites functi …
1
vote
1answer
14 views
How do I set minumum password requirements in Umbraco for the membership provider?
I am trying to set minimum password requirements for my membership provider in Umbraco. Currently my web.config membership section looks like this:
<membership defaultProvid …
1
vote
5answers
44 views
Iterate through existing Session objects
I want to be able to kill existing sessions for the same username when someone logs in to prevent multiple people from using the same login.
Is there a way to iterate through exis …
0
votes
4answers
123 views
ASP.NET Tree Control - Cannot re-expand tree on reload
I have the following code to delete a company displayed in my ASP.NET 2.0 Tree control:
protected void Delete_Click(object sender, EventArgs e)
{
TreeNode parentNode = null;
…
1
vote
1answer
22 views
Static Cache Error
I have a static Cache that at a set time updates a generic list of Objects from a database.
It is just a simple static List:
private static List _myObject;
public List<myObj …
