MikeD1

Stories submitted by MikeD1

jQuery Fun: Greeting Your Site Referrals (moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 3 months ago

This is a complete javascript example to detect your site visitors referrer and greeting them with a message based on their referrer url read more...

add a comment |category: |Views: 319

tags: another

Building a jQuery-Powered Tag-Cloud(nettuts.com)

submitted by MikeD1MikeD1(290) 3 years, 3 months ago

Tag-clouds are easy to do badly; whether from a design perspective or from a code perspective. Thanks to jQuery, it’s also easy to do well. read more...

add a comment |category: |Views: 43

tags: another

jQuery & Ajax Fun: Implementing a Paging Listbox(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 3 months ago

Many times in web forms we need to provide a listbox with lots of elements, A good solution is to filter and page these elements to speedup page loading and optimize DB/Network usage.. This is a complete implementation of a paging listbox using jQuery on client side and ASP.Net on server side.. read more...

add a comment |category: |Views: 164

tags: another

Best Practice: An Introduction To Domain-Driven Design(msdn.microsoft.com)

submitted by MikeD1MikeD1(290) 3 years, 4 months ago

Domain-Driven Design (DDD) is a collection of principles and patterns that help developers craft elegant object systems. Properly applied it can lead to software abstractions called domain models. These models encapsulate complex business logic, closing the gap between business reality and code. read more...

add a comment |category: |Views: 34

tags: another

More Web Design Trends For 2009(smashingmagazine.com)

submitted by MikeD1MikeD1(290) 3 years, 4 months ago

take a closer look at some of the trends identified, discovered and observed over the last months. In this overview, you’ll find a review of each trend and more beautiful examples that can inspire you in your next project. read more...

add a comment |category: |Views: 15

tags: another

jQuery, JSON and ASP.NET(dotnet.dzone.com)

submitted by MikeD1MikeD1(290) 3 years, 4 months ago

Lately, I’ve been demonstrating how to use jQuery. Both use a considerable amount of JavaScript so if there is some way we could eliminate or reduce the amount of code we had to load, performance would naturally increase. read more...

add a comment |category: |Views: 373

tags: another

Creating Data Access Layer for A Multi-Language ASP.Net Application(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 4 months ago

After i posted a simple Data Access Layer using Custom Entity Classes. it is time to extend it to support a multi-language ASP.Net Application.. read more...

add a comment |category: |Views: 47

tags: another

Tweak DataSet Paging in ASP.Net(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

Wanted to focus on how to tweak paging using DataSet as it is unpopular tip and it saves lots of time to return records in closer pages which usually gets more hits than further pages... read more...

add a comment |category: |Views: 20

tags: another

An Extensive Examination of the DataGrid Web Control(aspnet.4guysfromrolla.com)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

This article is the first in a multi-part series on using the DataGrid Web control read more...

1 comment |category: |Views: 8

tags: another

Traditional yet Powerful : Data Access Layer for ASP.Net(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

This is a complete example of creating Data Access Layer(DAL) using the traditional yet powerful "Object to Relational mapping model" or "Custom Entity Classes" that support Paging too.. read more...

add a comment |category: |Views: 55

tags: another

Simulating WAN Connection for SQL Server Performance Testing(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

I needed to do some testing on SQL Server on my PC, but response was of course very fast, so i needed to simulate WAN connection to get some real world results.. read more...

add a comment |category: |Views: 16

tags: another

How to : Code Beautifier And Formatter for VB/VBScript/VB.net(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

I wrote a simple Code Beautifier and formatter for VB/VBScript/VB.net using JavaScript and CSS. read more...

add a comment |category: |Views: 129

tags: another

Add Top 20 Social Bookmarks To Your Page(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

This is a simple JavaScript that you can paste to any web page or blog to add the top 20 ranked social bookmarking sites as advised in [List of social bookmarking sites] and It should look like Icons on the right side of my blog read more...

add a comment |category: |Views: 4

tags: another

Paging in ASP.Net/VB.Net using DataReader(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

I wanted to highlight more on this method of paging using DataReader cause you won't see out there very often.. although it is simpler than SQL Paging methods and it is slightly faster than usual DataSet paging method.. read more...

add a comment |category: |Views: 87

tags: another

Writing Less & Generic Data Access Code in ADO.NET 2.0(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

Most applications use data access code to access the underlying data store to perform basic data queries such as Select, Update, Delete, and Insert. here is a quick and lightweight data access layer that you can extend later when needed.. in this class will cover SQL Server and MS Access.. read more...

add a comment |category: |Views: 22

tags: another

Paging in ASP and ASP.Net(moretechtips.net)

submitted by MikeD1MikeD1(290) 3 years, 5 months ago

Comparing paging methods : DataSet , DateReader , Recordset, Top Clause , Row_Number Function I did a simple timing using these paging methods on one table of more than 1 million records , getting & looping 100 records per page.. read more...

add a comment |category: |Views: 14

tags: another