Saturdaybuddy

Stories kicked by Saturdaybuddy

Why MVC?(web2asp.net)

submitted by sedgeysedgey(1728) 3 years, 4 months ago

Yet another MVC introduction? Not exactly… I bet you are all sick and tired of hearing the acronym MVC these days and if you are here to grab a 4 dummies guide to set you on your merry way then Response.Redirect immediately as this is more about the ‘why’ than the code. read more...

add a comment |category: |Views: 37

tags: another

Using MySQL with ASP.Net(gatekiller.co.uk)

submitted by gatekillergatekiller(265) 3 years, 4 months ago

This article describes how you can easily use MySQL with ASP.Net web applications. read more...

add a comment |category: |Views: 55

tags: another

Windows 7 - Natively Booting from a .VHD file (Virtual PC image)(bink.nu)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 4 months ago

Most important thing to keep in mind is that we currently cannot boot from any kind of .VHD. Actually, I have just managed to boot from a Windows 7 installed on a new .VHD, and I installed it right from the Windows 7 DVD. We can do a similar process with "Windows Server 2008 R2 (beta)" installed on a .VHD file, as well. read more...

add a comment |category: |Views: 18

tags: another

Using MySQL and LINQ to SQL in C# ASP .NET(primaryobjects.com)

submitted by surfer6surfer6(362) 3 years, 4 months ago

You thought LINQ to SQL only works with MSSQL, right? Well, learn how to use LINQ to SQL business objects with a MySQL database. read more...

add a comment |category: |Views: 1386

tags: another

All Microsoft SDKs in one place!(blogs.msdn.com)

submitted by sharplifesharplife(4570) 3 years, 4 months ago

Here's an almost complete list of all Microsoft SDKs for Azure Services Platform, Windows Desktop, Server Technologies, etc. along with their links in one place. read more...

1 comment |category: |Views: 532

tags: another

Generic IValueConverter for Silverlight or WPF(buttonchrome.com)

submitted by ButtonChromeButtonChrome(230) 3 years, 4 months ago

When using the GridView in ASP.NET it is very handy to be able to include a ‘FormatString’ attribute to bound columns and the like – enabling you to display those dates, currency values, numbers etc in a more readable form. I was surprised that Silverlight or WPF doesn't offer this out of the box, and I couldn't find any ‘obvious’ answers when I googled the subject, Therefore, I created a simple IValueConverter to achieve the same result. read more...

add a comment |category: |Views: 168

tags: another

jQuery Playground from Google(code.google.com)

submitted by verbalKintverbalKint(585) 3 years, 4 months ago

Awsome tool to test jquery online read more...

1 comment |category: |Views: 2419

tags: another

Some performance issues and caveats of LINQ(rabdullin.com)

submitted by abdullinabdullin(385) 3 years, 8 months ago

Linq to collections generally performs worse, than the hard-coded approach. In the high-stress scenarios (i.e.: in heavy math calculations) improper Linq usage could become a problem. Let’s write a couple of micro-benchmarks and compare the performance of hand-written loops with the Linq. read more...

add a comment |category: |Views: 108

tags: another

Member system in ASP.NET without using Providers(m3rlinez.blogspot.com)

submitted by m3rlinezm3rlinez(35) 3 years, 8 months ago

I need to implement member system (role-based security) in ASP.NET in short time. So I don't have enough time to study/customize the Membership, Profile, Role provider. So I had searched on how to do it without them. And here is how .. read more...

add a comment |category: |Views: 14

tags: another

C# Link Cloaker(vckicks.110mb.com)

submitted by vckicksvckicks(399) 3 years, 8 months ago

Let's say you have a giant url and you need to shorten it. A short url is just more professional and attractive. Savvy online affiliates know the trick is to create a redirection page. The link cloaker uses some very simple C# methods to automate creating cloaked pages read more...

add a comment |category: |Views: 17

tags: another

Visual Basic 2008 Core Elements - Boxing(developertechno.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 8 months ago

Normally, when a conversion (implicit or explicit) occurs, the original value is read from its current memory location, and then the new value is assigned. For example, to convert a Short to a Long, the system reads the two bytes of Short data and writes them to the appropriate bytes for the Long variable. However, under Visual Basic, if a value type needs to be managed as an object, then the system performs an intermediate step. This intermediate step involves taking the value on the stack and copying it to the heap, a process referred to as boxing. As noted earlier, the Object class is implemented as a reference type, so the system needs to convert value types into reference types for them to be objects. This doesn’t cause any problems or require any special programming, because boxing isn’t something you declare or directly control, but it does affect performance. read more...

add a comment |category: |Views: 11

tags: another

IPv6 Terminology(computertechnos.blogspot.com)

submitted by mywebblog79mywebblog79(210) 3 years, 8 months ago

IPv6 common terms and concepts are defined as follows: • Node Any device that runs an implementation of IPv6. This includes routers and hosts. • Router A node that can forward IPv6 packets not explicitly addressed to itself. On an IPv6 network, a router also typically advertises its presence and host configuration information. • Host A node that cannot forward IPv6 packets not explicitly addressed to itself (a nonrouter). A host is typically the source and a destination of IPv6 traffic, and it silently discards traffic received that is not explicitly addressed to itself. ... read more...

add a comment |category: |Views: 15

tags: another

Username Availability Validator almost ready, the early demo(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 3 years, 8 months ago

A demo on using UserName Availability Validator control that is built using ASP.NET AJAX and the project is available on CodePlex read more...

1 comment |category: |Views: 189

tags: another

Introducing jBlogMvc(amrelsehemy.net)

submitted by AmrElsehemyAmrElsehemy(2585) 3 years, 8 months ago

In this part, I just announced jBlogMvc the ASP.NET MVC and jQuery blogengine which I build in order to learn more about the two new technologies (at least for me) read more...

1 comment |category: |Views: 354

tags: another

What are MVP and MVC and what is the difference?(stackoverflow.com)

submitted by wisemxwisemx(8074) 3 years, 8 months ago

When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and Model-View-Presenter. read more...

add a comment |category: |Views: 65

tags: another

Tip: How to validate values against certain rules when using binding? (silverlightshow.net)

submitted by iiordanoviiordanov(350) 3 years, 8 months ago

Typically validation occurs when in a two-way binding the business object (source property) is updated with data from the user input (target property). During the update there are two places where validation occurs. .... read more...

add a comment |category: |Views: 11

tags: another