Nick Berardi

13,003
reputation
1030 views

Registered User

name Nick Berardi
member for 1 year
seen 15 hours ago
website
location Phoenixville, PA
age 29
Nicholas Berardi has a BS in Information Science and Technology from The Pennsylvania State University. He runs his own consulting company, Managed Fusion out of Phoenixville, PA. Nick has been using C# and the .NET framework since its beta and has over 10 years of experience in web development. He is one of the co-authors of ASP.NET MVC 1.0 Website Programming: Problem - Design - Solution published by Wrox and released in June 2009.
6h
awarded  Popular Question
2d
accepted URL Rewrite 1.1 within VisualStudio 2008
2d
comment Modify the URL without reloading the page
You can do this in Flash. You would just need a little background App, and pass your JavaScript to the flash to modify the location bar.
2d
comment Modify the URL without reloading the page
You can actually do this with Flash. It will allow you to modify the URL without making a request. This is possible because Flash operates outside of the browser, but very tightly with it.
Dec
11
accepted Any way to add HttpHandler programatically in .NET?
Dec
11
revised Any way to add HttpHandler programatically in .NET?
added 219 characters in body
Dec
11
answered Any way to add HttpHandler programatically in .NET?
Dec
11
answered HttpResponse.End vs HttpResponse.Close vs HttpResponse.SuppressContent
Dec
10
comment Can I substitute MVC Routing for legacy WebForms URL Rewriting?
Don't worry it is a common thing to get Routing and Rewriting mixed up, I have seen some very famous developers make the same mistake. Well Routing won't handle all of what a URL Rewriter can do. Such as forcing www. on domains, checking headers, or redirects. Routing only has access to the Path part of the URL. So inorder to keep your site SEO friendly you will need your URL Rewriter to redirect the old URL's to the new ones.
Dec
10
comment How do you best offload a database insert, so a web response is returned quicker?
I understand that there is going to be a limitation point to what I am doing and there will definitely be a bottle neck. But I hope to have that bottle neck as far out in the future as I can possible afford. Because the next solution after this is going to be a cloud based one. And I am hoping to delay that point long enough for Azure to become a possibility for production code.
Dec
10
accepted Can I substitute MVC Routing for legacy WebForms URL Rewriting?
Dec
9
comment How do you best offload a database insert, so a web response is returned quicker?
No, the data that is stored is passive data. In that if it is lost in transmitting it is not really a big deal, because this is for statistical analysis. That being said, I also want to loose as little data as possible.
Dec
9
comment How do you best offload a database insert, so a web response is returned quicker?
@n8wrl sorry if the point wasn't clear, this is being used on the public internet to gain specialized insight in to certain plugins the clients have on their browser.
Dec
9
comment How do you best offload a database insert, so a web response is returned quicker?
The call is made in an async nature on the client. Basically the client loads javascript, and an img tag with the src of the above method is added to the DOM, which makes the request and gives me all the data. So the client is not stalled, it is just waiting for the image to download, which ties up one of the very presious browser connections. Plus ties up my server from serving more requests.
Dec
9
revised Can I substitute MVC Routing for legacy WebForms URL Rewriting?
added 751 characters in body; added 201 characters in body
Dec
9
answered Can I substitute MVC Routing for legacy WebForms URL Rewriting?
Dec
9
asked How do you best offload a database insert, so a web response is returned quicker?
Dec
9
revised C#:How to customize datetime format or to convert DateTime to String with required format..
the solution is the one that is checked with a green mark
Dec
9
comment C#:How to customize datetime format or to convert DateTime to String with required format..
What do you mean dateValue? You mentioned nothing about that in your original post. You really need to learn how to ask questions. You probably don't realize, but if you let just the plain Parse try and figure out the date format it takes much longer than just providing it, to the parser intialially. That is why there are two different methods. Second Unholy was basing his entire thing off of his machine, which seems to be running a non-standard setup. But you shouldn't hack your own formating, a "/" is a date seperator, and you want it to always be a "/", use a culture that supports it.
Dec
9
comment C#:How to customize datetime format or to convert DateTime to String with required format..
Read the document for more information on how the Date separators work msdn.microsoft.com/en-us/library/…
Dec
9
comment C#:How to customize datetime format or to convert DateTime to String with required format..
Actually no, you should be using the InvariantInfo formatter, not hacking the string together with quoted date separators.
Dec
9
answered C#:How to customize datetime format or to convert DateTime to String with required format..
Dec
9
comment C#:How to customize datetime format or to convert DateTime to String with required format..
No he had it right. You default separator in you system has been defined as a "." instead of a "/". See this property: msdn.microsoft.com/en-us/library/…
Dec
7
comment JQuery live click not working in IE wit a tag
This really isn't a good answer, because you just hacked your way around the problem instead of actually solving it.
Dec
6
awarded  Mortarboard
Dec
6
accepted Best way to turn an integer into a month name in c#?
Dec
5
comment LINQ Union with Constant Values
Try this update.
Dec
5
revised LINQ Union with Constant Values
added 42 characters in body; added 100 characters in body
Dec
5
answered alpha transparency solution in IE
Dec
5
answered Algorithm that Generates Unique Serial Number for Each English Word
Dec
5
revised LEFT JOIN for current row in primary table
added 8 characters in body
Dec
5
answered LEFT JOIN for current row in primary table
Dec
5
comment LINQ Union with Constant Values
TopElement is SelectListItem it only contains Value and Text.
Dec
5
answered LINQ Union with Constant Values
Dec
4
answered URL Rewrite 1.1 within VisualStudio 2008
Nov
30
awarded  Enlightened
Nov
30
awarded  Nice Answer
Nov
30
revised How can I format DateTime to web UTC format?
added 145 characters in body
Nov
30
answered How can I format DateTime to web UTC format?
Nov
27
accepted URL Re-Writing in ASP.Net
Nov
9
comment Problem with UrlRewritingNet
What version of IIS? 6 or 7? Also can you explain the h_t_t_p and how that helps anything?
Nov
9
answered Why on earth ContentPlaceHolder renders as table ?
Nov
6
awarded  Nice Answer
Nov
6
awarded  Enlightened
Nov
5
answered Is this utility useful enough to bother putting into CodePlex?
Nov
5
revised How do I access to an address in memory with c#?
deleted 33 characters in body; edited tags; edited title
Nov
5
answered How do I access to an address in memory with c#?
Nov
5
answered C# int.parse issue with leading zeros
Nov
5
comment C# int.parse issue with leading zeros
@Robert according to reflector they both are exactly the same.
Nov
5
comment C# int.parse issue with leading zeros
It doesn't, it uses int.Parse(value, CultureInfo.CurrentCulture), in the exact same way.