Search Results

0
votes
3answers
193 views

HtmlSelect vs DropDownList

Between HtmlSelect and DropDownList, which one has a better performance (initialized and rendered faster)? Are there any guidelines when to use which? Another questions is if I want to acce …
2
votes
4answers
298 views

ASP.NET - Url Rewriting vs. Routing

Hi, I am making a making a new asp.net web forms site and would like to beautify my urls - I want to accept a url like this one "www.mysite.com/1-2,3" and turn it one like this "www.mysite.com/page …
0
votes
1answer
42 views

Can I do this with ASP.NET Routing?

I want to accept a url like this one "www.mysite.com/1-2,3" and turn it one like this "www.mysite.com/page.aspx?a=1&b=2&c=3". Basically I want to know if it's possible to lose .aspx portion …
0
votes
2answers
395 views

SqlDataReader Column Ordinals

Suppose I am calling a query "SELECT name, city, country FROM People". Once I execute my SqlDataReader do columns come in the same order as in my sql query? In other words can I rely that t …
0
votes
3answers
104 views

Is there conditional caching in ASP.NET?

Is there a built-in asp.net way to conditionally serve pages, for example I want the following logic: If there is a session data I generate a page, if there is no session d …
0
votes
1answer
71 views

Substitution Control and Cache Location

If I use Substitution control in asp.net page, and also add the following directive to the page: <%@ OutputCache Duration="7200" VaryByParam="None" Location="Any" %> …
0
votes
4answers
156 views

Accessing Page Class From Another Page Class

How do I access a page class from another class. For example I have: public partial class MyPage : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) …
1
vote
1answer
173 views

Routing vs Url Rewrite (IIS7) Performance

I was wondering is there any difference in terms of performance between the two approaches? Any good articles on this? …
1
vote
2answers
165 views

ASP.NET Routing and Regular Expressions

I am trying to enable a route like the following route = new Route("{w1}-{c1}-{n1},{w2}-{c2}-{n2}", new ResultRouteHandler()); route.Constraints = new RouteValueDictionary(); route. …
0
votes
1answer
36 views

How do I know which attributes are stored in ControlState and which in ViewState?

In asp.net, how can I know which attributes are stored in ControlState and which in ViewState? Are there any official documents on this? …
0
votes
2answers
130 views

Disable Session from Master Page

In ASP.NET, I would like to disable session state from master page, however @Master directive doesn't have EnableSessionState attribute as @Page does. Is there any workaround? …
0
votes
1answer
135 views

VS2008 Load Testing - Page Response Time

Hi. I am running a load test from VS 2008 on my asp.net web application. The thing I notice is that for some of my pages Average Page Time is around 20. Does this mean it takes 20 …
1
vote
2answers
182 views

CA1305: int.Parse(String)

I am getting a CA1305 Warning. Microsoft.Globalization : Because the behavior of 'int.Parse(string)' could vary based on the current user's locale settings, replace thi …
0
votes
4answers
100 views

Sql Processing vs. ASP.NET Runtime processing

I know in general it is a good practice to move as much processing as possible from Sql Server to the application (in my case ASP.NET). However what if the processing on the application level means …
0
votes
2answers
145 views

Graphics object to image file

I would like to crop and resize my image. Here is my code: Image image = Image.FromFile(AppDomain.CurrentDomain.BaseDirectory + "Cropper/tests/castle.jpg"); // Crop and res …

1 2 next
15 30 50 per page