idsln

Stories kicked by idsln

Take an ASP.NET Application offline with HttpModules(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 2 years, 8 months ago

Whenever you do maintenance work on a website it is advisable to show the visitors a nice message telling them politely to come back later, rather than a nasty error, or even worse: a big Yellow Screen of Death. Read how I found a solution similar to the app_offline.html approach using HttpModules and how I still allow administrators to access the website. read more...

add a comment |category: |Views: 393

tags: another

ASP.NET Menu with jQuery Superfish(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 2 years, 9 months ago

Choosing the right type of menu for a website is not easy at all. The ASP.NET Menu Control is definitely NOT a good starting point due to the horrendous markup it renders. The idea is to use a modified version of the CssFriendly Menu adapter with the jQuery Superfish plugin. read more...

add a comment |category: |Views: 1219

tags: another

Two New Features of C# 4.0 You will Love(devcurry.com)

submitted by samsertsamsert(2159) 2 years, 9 months ago

Two new features to C# 4.0 are optional parameters and named parameters. Optional parameters have been a part of VB.Net but it's now possible to do this in C#. Let us see how read more...

add a comment |category: |Views: 972

tags: another

.NET continues to DoS attack me, seriously!(saftsack.fs.uni-bayreuth.de)

submitted by dun3dun3(360) 2 years, 9 months ago

Yeah, it does! And I don’t necessarily mean denial of service - that would mean that I couldn’t get any programming done. Nope, far from it - but it sure is denial of sleep attacking me. Come one, I am struggling to keep up with all the new runtimes, features, frameworks and best practices coming out of Redmond. It’s awesome and actually fun; no doubt about it - but sometimes it is excruciating as well. And today I am going to talk about the excruciating experience of seeing another reinvented wheel hobble out of Microsoft. read more...

2 comments |category: |Views: 621

tags: another

Simplify calling ASP.NET AJAX services from jQuery(encosia.com)

submitted by gt1329agt1329a(7849) 2 years, 10 months ago

I was happy to learn that jQuery provides an excellent solution for consolidating settings to be used in multiple instances of $.ajax. In this post, I’ll show you how to use that consolidation feature, and exactly how I am now using that to more simply call ASP.NET AJAX services with jQuery. read more...

add a comment |category: |Views: 364

tags: another

ASP.NET Membership – Show list of users online(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 2 years, 10 months ago

ASP.NET Membership, Show list of users online.The MembershipProvider Class exposes the GetNumberOfUsersOnline() method which returns the number of users online. But what would it take to show a list of users online. read more...

add a comment |category: |Views: 193

tags: another

Enumerable.Except(T) and IEqualityComparer - a little help(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 2 years, 11 months ago

Understand how Enumerable operators: Except, Distinct, Intersect, Union work with IEqualityComparer and take a look at an example of LINQ Except with IEqualityComparer read more...

add a comment |category: |Views: 37

tags: another

run jQuery code from ASP.NET Server-Side(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 2 years, 11 months ago

The post is the example of an approach: how you would run some jQuery code from ASP.NET code-behind (server-side). If there is a ScriptManager on the page and the request was Asynchronous, then the JavaScript code needs to be registered with ScriptManager.RegisterClientScriptBlock. If the request is just a simple standard Postback, registering the JavaScript with Page.ClientScript.RegisterClientScriptBlock is the solution. read more...

add a comment |category: |Views: 102

tags: another

jQuery UI DatePicker instead of AJAX Control Toolkit CalendarExtender(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 3 years ago

The reasons why I abandoned using the CalendarExtender and choose to use the jQuery UI DatePicker instead. read more...

add a comment |category: |Views: 619

tags: another

8 Must Have Tools when Going to the Client’s Site(hatim.indexdev.net)

submitted by HatimrHatimr(1492) 3 years ago

Have you ever been to a client’s site and you are in the middle of a large deployment and something goes wrong. Of course not! yeah ..sure Don’t you wish then you had packed with you the source code code, X or Y tool to help you better diagnose the issue... read more...

add a comment |category: |Views: 942

tags: another

How I handle JSON dates returned by ASP.NET AJAX(encosia.com)

submitted by gt1329agt1329a(7849) 3 years ago

The problem of how to handle dates in JSON is one of the more troublesome issues that may arise when directly calling ASP.NET AJAX web services and page methods.. Since the question of how I handle this problem is something asked often in emails and in comments on other posts here, I want to address the topic with its own post. read more...

add a comment |category: |Views: 193

tags: another

Firebug Lite for IE, Opera, Safari(blog.dreamlabsolutions.com)

submitted by idslnidsln(10) 3 years, 1 month ago

When working in other browsers than Firefox I definitely miss the Firebug extension. By using Firebug Lite we can now have some of the original Firebug features in other browsers like: Internet Explorer, Google Chrome, Opera, Safari, etc. read more...

add a comment |category: |Views: 18

tags: another

jQuery live() and ASP.NET Ajax asynchronous postback(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 3 years, 2 months ago

The jQuery (1.3+) live event and why you have to know about it when working with ASP.NET Ajax asynchronous postback. This post also sums up what you can use to make your jQuery $(document).ready() call work also after an asynch postback took place. read more...

add a comment |category: |Views: 189

tags: another

jQuery $document.ready() and ASP.NET Ajax asynchronous postback(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 3 years, 3 months ago

Combine ASP.NET Ajax and jQuery and make $document.ready execute even after an asynchronous postback took place. read more...

add a comment |category: |Views: 585

tags: another

Syntax Highlighter for Windows Live Writer 2009(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 3 years, 3 months ago

Use this syntax highlighter plugin with Windows Live Writer 2009 to display highlighted code in your blog. The plugin automatically inserts the <pre> block around your code excerpt, and it lets you choose out of many options, based on how you would wish your highlighted code to look like. The plugin has been newly developed for ver 2.0 of http://alexgorbatchev.com/wiki/SyntaxHighlighter. Take a look at my blog to see an example or two. Use it, Kick it, It's free. read more...

add a comment |category: |Views: 26

tags: another

ModalPopupExtender to show a MessageBox(blog.dreamlabsolutions.com)

submitted by arnoldmatuszarnoldmatusz(600) 3 years, 4 months ago

How you can use a ModalPopupExtender to display a MessageBox read more...

add a comment |category: |Views: 293

tags: another