dczupek

Stories submitted by dczupek

MVC Part 2 - Adding MVC to existing project(blog.dczweb.net)

submitted by dczupekdczupek(99) 1 year, 5 months ago

How to add MVC into existing ASP.NET project. Required changes in project file, global.asax, web.config and IIS configuration. read more...

add a comment |category: |Views: 16

tags: another

MVC Basics(blog.dczweb.net)

submitted by dczupekdczupek(99) 1 year, 6 months ago

Basics about MVC under .NET read more...

add a comment |category: |Views: 27

tags: another

ReSharper 5.0 Released(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 1 month ago

Along with VS2010 JetBrains released new version of favourite tool ReSharer 5.0 read more...

add a comment |category: |Views: 5

tags: another

Visual Studio 2010 Downloads(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 1 month ago

Visual Studio 2010 Launched - Final version available for public. Download links read more...

add a comment |category: |Views: 16

tags: another

Configuring IIS to Run 32-bit Applications on 64-bit Windows(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 2 months ago

How to configuring IIS to Run 32-bit Applications on 64-bit Windows read more...

add a comment |category: |Views: 18

tags: another

Migration of ASP.NET app from IIS6 to IIS7 (7.5)(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 3 months ago

For many of us familiar problem. You developing applications under IIS6 and you're about to move them to IIS7. In previous version of IIS was enough to copy over your files, create app pool and site. IIS7 (7.5) is different in this point. I've guide you through some problems you can run into. read more...

add a comment |category: |Views: 37

tags: another

Resharper 5 Beta(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 4 months ago

ReSharper 5.0 Beta is now available and includes many improvements, fully VS 2010 support. read more...

add a comment |category: |Views: 11

tags: another

Visual Studio 2010 and .NET Framework 4 Beta 2 For Public(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 7 months ago

Visual Studio 2010 Beta 2 is now available for public read more...

1 comment |category: |Views: 13

tags: another

Javascript in Flash(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 7 months ago

Imaging an situation when you need to track redirect activity from the flash animation. Execute some tracking script right before user left the flash animation. read more...

add a comment |category: |Views: 4

tags: another

Simple validation in Model View Presenter(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 8 months ago

Last time I wrote about how to implement simple page by Model View Presenter pattern. This time let's focus a bit to validation in presenter and displaying results on your page. read more...

add a comment |category: |Views: 57

tags: another

Model View Presenter (MVP) Pattern(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 9 months ago

Model-View-Presenter is a user interface design pattern engineered to facilitate automated unit testing and improve the separation of concerns in presentation logic. The Model is an interface defining the data to be displayed or otherwise acted upon in the user interface. The View is an interface that displays data (the Model) and routes user commands to the Presenter to act upon that data. The Presenter acts upon the Model and ... read more...

add a comment |category: |Views: 507

tags: another

.NET Programming: Request.UrlReferrer Is Null In IE 6.0 when location.(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 9 months ago

Sometimes when you have to do redirect on clientside you might need to have properly filled up URLReferrer. Problem is that IE and FF behaves differently... read more...

add a comment |category: |Views: 56

tags: another

Tracking with dcsMultiTrack invalid fields on client side(blog.dczweb.net)

submitted by dczupekdczupek(99) 2 years, 9 months ago

dcsMultiTrack - is 3rd compoment. Instead of dcsMultiTrack you can use your own tracking tool or for example google analytics. Sometimes you can find yourself in situation when you want to track if some of the fields on your form is not valid. Track some value when it does not goes through clientside validation. In this situation you need to somehow hook up on or before validation it self will be executed. In my sample I use custom javascript function which executes validation on form fields an... read more...

add a comment |category: |Views: 7

tags: another