|
|
xtremebiz
xtremebiz
 |
|
Stories kicked by xtremebiz
|
|
published 2 months, 1 day ago, submitted by
tiernano
2 months, 1 day ago
aws.typepad.com — This is big news! Amazon are to enable Windows Support on EC2. this will allow users to kick of Windows images for running SQL Servers, IIS instances and anything else (even HPC stuff) in the cloud! SWEET! read more...
2 comments
|
category: Web Services | Views: 329
|
|
tags:
WebServices | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 2 days ago, submitted by
justin_etheredge
2 months, 2 days ago
codethinked.com — Right now is honestly the most excited that I have ever been about the .net platform. With IronRuby and ASP.NET MVC on the horizon and jQuery being integrated as part of the official Microsoft development platform, I think that Microsoft is finally "getting" web development. read more...
add a comment
|
category: ASP.NET | Views: 297
|
|
tags:
jQuery, CodeThinked, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 3 days ago, submitted by
asteroid
2 months, 3 days ago
cio.com — Microsoft's development environment offers new tools for Agile development, software testing enhancements and improved support for cloud computing. Microsoft showed CIO.com a sneak peek, and the author invited developers to chime in with their feedback.
read more...
4 comments
|
category: Visual Studio | Views: 861
|
|
tags:
VisualStudio2010, Microsoft, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 3 days ago, submitted by
gt1329a
2 months, 3 days ago
encosia.com — One example of how ASP.NET AJAX can conflict with jQuery's plugins, due to its modification of some JavaScript base types, and how to fix the problem in this particular case. read more...
add a comment
|
category: AJAX | Views: 265
|
|
tags:
Encosia, jQuery, AJAX, ASPNETAJAX, ASP.NETAJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 3 days ago, submitted by
rstrahl
2 months, 4 days ago
west-wind.com — I've posted Part 1 in a 2 part series on jQuery today. Part 1 covers the client side features of jQuery from the basics all the way through creating simple plugins and extending jQuery. This is a long article that discusses a host of the really useful features that jQuery brings to the table for client side Javascript development. Part 2 will then follow up with server side ASP.NET integration. read more...
add a comment
|
category: AJAX | Views: 296
|
|
tags:
jQuery, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 3 days ago, submitted by
mosessaur
2 months, 4 days ago
hanselman.com — Microsoft is going to make jQuery part of the official dev platform. JQuery will come with Visual Studio in the long term, and in the short term it'll ship with ASP.NET MVC. We'll also ship a version includes Intellisense in Visual Studio. read more...
add a comment
|
category: ASP.NET | Views: 139
|
|
tags:
jQuery, asp.netmvc, Microsoft, ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 4 days ago, submitted by
mosessaur
2 months, 4 days ago
weblogs.asp.net — ScottGu announce that Microsoft will be shipping jQuery with Visual Studio going forward. We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch. The files will continue to use and ship under the existing jQuery MIT license. read more...
1 comment
|
category: ASP.NET | Views: 314
|
|
tags:
news, Pick, Microsoft, ASP.NET, jQuery | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 4 days ago, submitted by
mosessaur
2 months, 4 days ago
jquery.com — news today: Both Microsoft and Nokia are taking the major step of adopting jQuery as part of their official application development platform. Not only will they be using it for their corporate development but they will be providing it as a core piece of their platform for developers to build with. read more...
3 comments
|
category: Other | Views: 177
|
|
tags:
Microsoft, ASP.NET, jQuery, news | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
xtremebiz
3 months, 19 days ago
codeforeternity.com — We can use the ElementAt extension method of LINQ to return the element at a specified index (zero based) in a sequence. However the ElementAt extension method would throw the System.ArguementOutOfRangeException when the specified index is a negative value or not less than the size of the sequence. In such a scenario, we can use the ElementAtOrDefault extenion method which would return the default value of a type instead of throwing the System.ArguementOutOfRangeException.
Read this article for code example (both in C# and VB.NET) with comments read more...
add a comment
|
category: C# | Views: 19
|
|
tags:
3.5, .net3.5, VB.NET, C#, LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 19 days ago, submitted by
docluv
3 months, 21 days ago
crazeegeekchick.com — In my process of turning www.aspforblondes.com into www.crazeegeekchick.com I had some concerns regarding broken links, search engine rank etc. I decided to write an ASP.NET custom HTTP Module to achieve my goals. After reading tons of information about 301 permanent redirects. read more...
add a comment
|
category: ASP.NET | Views: 177
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
xtremebiz
6 months, 10 days ago
codeforeternity.com — I recently had to write a T-SQL function which cleans up all non numeric characters from a varchar variable and returns the int value of the remaining numeric characters. If no numeric characters exist, the function should return zero. I thought it would be nice to share this with you and I hope you find this useful ;-) Expected output of the function:
PRINT dbo.GetIntFromVarchar('R1A2J3') -- returns 123
PRINT dbo.GetIntFromVarchar('COOL456CODER') -- returns 456
PRINT dbo.GetIntFromVarchar('789') -- returns 789
PRINT dbo.GetIntFromVarchar('GEEK') -- returns 0 read more...
add a comment
|
category: Database | Views: 10
|
|
tags:
Database | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
xtremebiz
6 months, 12 days ago
codeforeternity.com — This post explains about the Single and SingleOrDefault extension methods of LINQ, possible exceptions which can be thrown, and provides code examples both in C# and VB.NET along with code comments. read more...
add a comment
|
category: Linq | Views: 175
|
|
tags:
VB.NET, ExtensionMethods, 3.5, LINQ, .net3.5 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 13 days ago, submitted by
shaharyr
6 months, 13 days ago
dev102.com — This is the fourth post in the series of programming job interview challenge. Today, I will provide the answer to job interview challenge #3, talk about readers answers (all of the comments are now approved) and give you a new challenge. So, lets get into business:
read more...
add a comment
|
category: Architecture | Views: 530
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 13 days ago, submitted by
igoro
6 months, 14 days ago
igoro.com — Ever since I learned about LINQ, I keep discovering new ways to use it to improve my code. Every trick makes my code a little bit faster to write, and a little bit easier to read. This posting summarizes some of the tricks that I came across. I will show you how to use LINQ to: initialize an array, iterate over multiple arrays in a single loop, generate a random sequence, ... read more...
1 comment
|
category: C# | Views: 651
|
|
tags:
LINQ, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 13 days ago, submitted by
janko
6 months, 15 days ago
hanselman.com — Over five years ago I posted Tips for a Successful MSFT Presentation. Yesterday I watched the video of my Mix Presentation all the way through. It's always very painful to hear one's own voice but it's even worse to watch yourself. I never listen to my podcast and I avoid watching myself. It's like watching a person in parallel universe and it inspires self-loathing. However, if you are someone who values continuous improvement - and I am - you need to do the uncomfortable. read more...
add a comment
|
category: Other | Views: 237
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|