Search

You searched for the word(s): userid:169

Matching Posts

  • Re: Php performance vs ASP.Net Performance

    What's going on here? What difference does it make? I have written several LARGE SCALE enterprise apps in PHP and ASP.NEt (and Hannes, I have even visited 2 of your MSDN techtalks - very good) but I have never ever needed to instantiate 1,000,000 objects at a time. So why bother benchmarking? And who cares if MS SQL is slower then MySQL? Why don't we benchmark $Dollars vs. Computing Time and see who wins, you know that any MS solution would loose out to GPL. (But I don't advocate it, it would be
    Posted to Migrating from PHP to ASP.NET (Forum) by pr0c on 9/25/2003
  • Re: Leading zeros on a string

    I use a function like this: private string digits(string input, int mindigits) { string tmpstring = input; while(tmpstring.Length < mindigits) { tmpstring = "0"+tmpstring; } return tmpstring; } then it works like this... string twodigitday = digits(DateTime.Day.ToString(), 2) // Today that would be 06 string sixdigitnum = digits("5", 6) // that would make 000006
    Posted to C# (Forum) by pr0c on 6/6/2003
  • Re: Why C# Instead of VB?

    IMHO c# has alot of potential, its a young language which will grow and expand. for example see http://www.go-mono.com .. perfect example. C# for linux (and other unices)! VB again IMHO is a dead end, but thats fine if you don't plan to progress. In the end use what your more efficient with. Efficiency = money. For me i'm far more efficient with c# than i ever was with VB. I can write my code in fewer lines and YES c# does perform better for some people. IT does for me because my c# programming is
    Posted to C# (Forum) by pr0c on 5/12/2003
  • Re: Disable the back button or function...

    I don't see why you can't just make a lil looping code in js that does something along the lines of... if there is history after this page then the user hit back and now move to the next page in history.
    Posted to Getting Started (Forum) by pr0c on 8/5/2002
  • Re: jmail / email ?

    .net has its own email stuff.. a simple way to use it is to load up Web Matrix and while viewing code you can use a wizard ! :)
    Posted to Web Forms (Forum) by pr0c on 7/24/2002
  • Php performance vs ASP.Net Performance

    I'm trying to convince some people that asp.net is a better way to go. Is there any documentation around that compares the performance of the two? I've searched quite a bit and can't seam to find any. Thanks for any responses. Nate
    Posted to Migrating from PHP to ASP.NET (Forum) by pr0c on 6/17/2002
Page 1 of 1 (6 items)