| Some info that preceeded the benchmark test.... (6 replies) |
| ASPFriends.com 'aspngspeed' list |
| **************************************** I posted the following to Dan Wahlin: One thing I am curious about Dan is why your ASP.net examples on your site 20 and book are so extremely mired in response.writes? sub page load(s as object, e as eventargs) for counter 3D1 TO 100 response.write (i & " br ") next end sub correct: sub page load(s as object, e as eventargs) dim sb as new stringbuilder for ... |
|
| Is there a faster string manipulation? (11 replies) |
| ASPFriends.com 'aspngspeed' list |
| Hi all, I have a function that takes in a string input and return how many lines this string will take up. This function can be called many times throughout my code. Is there a better way of doing this then the following steps: 1. split it into an array base upon the space 2. start concatenating the string together 3. checked if the concatenated string is greater then my line limit, if so incremen... |
|
| user control design and performance questions (3 replies) |
| ASPFriends.com 'aspngspeed' list |
| Moved from [aspngarchitecture] to [aspngspeed] by Charles M. Carroll darthcarroll@asplists.com Is there any (significant) performance hit in using user controls (.ascx)? What about dynamically loading user controls? It certainly makes life easier to be able to encapsulate layout/functionality into user controls etc... but is there such a thing as overusing user controls? What if I have a user cont... |
|
| Better to create new Stringbuilder or remove (2 replies) |
| ASPFriends.com 'aspngspeed' list |
| Moved from [aspngdata] to [aspngspeed] by Charles M. Carroll darthcarroll@asplists.com This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. NextPart 001 01C19DEC.BD18AA3C Content Type: text/plain Hi all, In situations where you find yourself using the stringbuilder in a loop, is it better to call the remove method o... |
|
| has anybody gotten GZIP compression working with an ASP.NET app? (2 replies, VIP) |
| ASPFriends.com 'aspngspeed' list |
| since most current browsers support this (AFAIK), it seems like a great way to scrunch down all the dynamically generated HTML from ASP.NET. has anybody figured out how to get this working, so the server returns a GZIP ed HTTP stream? Kirk Marple CTO, VP of Engineering Streaming Media Technologies, Inc. 800 5th Ave, Suite 101 358 Seattle, WA 98104 c: 206.251.4820 e: kirk@streamingmediatech.com w: ... |
|
| Page tuning: what happens between PreRender and SaveViewState? (3 replies) |
| ASPFriends.com 'aspngspeed' list |
| i was doing some server control perf testing specifically seeing how much slower asp:Label rendering is vs. writing out the span tag myself. when using trace.axd for app level tracing, i'm seeing 50% or more of the page request time occurring between aspx.page: End PreRender and aspx.page: Begin SaveViewState. what's happening between these two states? it seems to be proportional to the render tim... |
|
| System.Format... vs. Databinder.Eval (2 replies) |
| ASPFriends.com 'aspngspeed' list |
| What is the syntax to display a integer and varchar using System.Format? I heard it is much faster than Databinder.Eval? |
|
| Timing (3 replies) |
| ASPFriends.com 'aspngspeed' list |
| What's the best method to use for getting the runtime of an operation? Thanks, Ryan |
|
| Speed - Databind() vs Label.Text (3 replies, VIP) |
| ASPFriends.com 'aspngspeed' list |
| Copied from [aspngfreeforall] to [aspngspeed] by Charles M. Carroll darthcarroll@aspfriends.com This is a multi part message in MIME format. NextPart 000 0001 01C1A22F.6C57F1B0 Content Type: text/plain; charset "us ascii" Content Transfer Encoding: 7bit Hi What's the performace difference between Using Repeater and binding the data reader to it Vs Using Label server control and build the html usin... |
|
| DataSet XML versus SQL datareader (2 replies, VIP) |
| ASPFriends.com 'aspngspeed' list |
| Moved from [aspngarchitecture] to [aspngspeed] by Charles M. Carroll charlesmarkcarroll@yahoo.com This is a multi part message in MIME format. NextPart 000 0048 01C1A5E1.DE0049B0 Content Type: text/plain; charset "iso 8859 1" Content Transfer Encoding: quoted printable what's faster? xml with dataset or 20 sql server with datareader im talking about small databas with 5 records 20 NextPart 000 004... |
|