|
|
salim
Stories submitted by salim
|
|
submitted by
salim
7 months, 27 days ago
thepeoplestoolbox.com — Links sorted by category and popularity. Includes: .net, ajax, c, c#, c++, flash, java, javascript, perl, php, python, ruby, sql and xml. read more...
add a comment
|
category: Other | Views: 1
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
submitted by
salim
7 months, 28 days ago
blogs.msdn.com — Did you know that using WindowsPrincipal.IsInRole is ~40+% slower than doing the same work yourself? Run the code below and you’ll see … Don’t take me wrong – I do not suggest you avoid using IsInRole call; after all a single call is so fast on most computers that it is not even measurable using a timer… It’s just nice to know the cost of doing business. read more...
|
|
tags:
Tips | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
salim
7 months, 28 days ago
allwrong.wordpress.com — The MS Ajax AutoComplete extender is able to pull its completion list from either a Web Service or a Page Method. All the examples I could find used Web Service, but I wanted to use the Page Method approach. read more...
add a comment
|
category: AJAX | Views: 2
|
|
tags:
AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
salim
8 months, 2 days ago
dotnetbips.com — ASP.NET AJAX opens a wide range of possibilities to developers. One of them is periodic pinging of database and check for changes to the data. It is certainly not a new technique and developers achieved it in the past using JavaScript and XMLHTTP. However, with the help of ASP.NET AJAX the same task becomes much simple. In this article I will illustrate a possible approach for notifying the end user of any changes made to the database. The notifications are displayed in a popup to catch the attention of the user. read more...
add a comment
|
category: AJAX | Views: 0
|
|
tags:
AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
salim
9 months, 1 day ago
news.softpedia.com — Yes, Microsoft is delivering Windows Vista Business as a free download. There has to be a catch to it, right? Well, not really, users can simply download the Business SKU of Windows Vista and test drive the operating system without dropping a single cent. And, to sweeten the deal, Microsoft has also thrown a little extra on top of Vista Business, namely Visual Studio 2008. The next generation of VS development resources, Visual Studio 2008, scheduled for availability on February 28, 2008, is tailored on Vista and the Office 2007 System read more...
1 comment
|
category: Vista | Views: 2
|
|
tags:
Vista | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
salim
9 months, 5 days ago
cs.tut.fi — This document lists all the message headers defined in the HTTP/1.1 protocol, with short descriptions. In the list, the name of the header is a link to its definition in the protocol itself. Note that some of the headers are also used in Internet E-mail and in Usenet read more...
add a comment
|
category: Other | Views: 0
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
submitted by
salim
9 months, 5 days ago
devsource.com — Partial classes permit developers, including Microsoft developers, to split classes between multiple files. This works out pretty good because it lets Microsoft hide some plumbing, for example, for the Windows Forms designer. Partial classes also makes it possible for programmers that consume generated code to write the custom part in a separate location, in case the generated part needs to be re-generated. So there are definite read more...
add a comment
|
category: C# | Views: 0
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
salim
9 months, 5 days ago
15seconds.com — This article examines how to take advantage of HttpModules to create a URL rewriting engine in .NET. This tool has been described as the Swiss Army Knife of URL manipulation. If you don't have a fundamental understanding of what HttpModules are and how to create and use them read more...
add a comment
|
category: ASP.NET | Views: 6
|
|
tags:
rewrite.net, URL, Rewriting, ASP.NET, Rewrite | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
submitted by
salim
9 months, 29 days ago
c-sharpcorner.com — I am sure that many of you have read about Silverlight, the latest offering from Microsoft promising the ability to deliver rich interactive applications and media. Silverlight 1.1 Alpha has just been released and with this in mind, I decided to download all the tools required to start using Silverlight. To be honest, I have not spent much time looking into Silverlight 1.0; I just couldn't bring myself to start coding heavily in JavaScript. Version 1.1 gives the ability to perform the 'behind the scenes' coding in languages such as C# and VB.NET (plus others). read more...
add a comment
|
category: Silverlight | Views: 1
|
|
tags:
Silverlight | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
salim
10 months, 19 days ago
support.microsoft.com — Your password must be at least 18770 characters and cannot repeat any of your previous 30689 passwords. Please type a different password. Type a password that meets these requirements in both text boxes. read more...
1 comment
|
category: Security | Views: 0
|
|
tags:
Security | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
submitted by
salim
1 year, 2 months ago
eggheadcafe.com — I recently had a requirement to wrap executables and libraries so they would run as a service. My specific requirements were the following, in this context a task is defined as any method set to run within the service.
Allows for impersonation so each code set can run under a different user account.
Has the ability to run multiple separate tasks under a single instance of the service. Each task must run under a separate thread to allow multiple threads of the same task to be running concurrently.
Supports two types of tasks, polling (fired after a short interval) and scheduled (fired once per day at a fixed time).
Tasks are specified in a configuration file.
Must support class creation and method parameters. This includes support for arrays as parameters.
Must support static and instance methods.
Must support executing methods in executables as well as libraries with minimal to no change to existing code.
Each task must be able to use its own configuration file.
Changes to a task's files will cause the task to reload.
After searching the web for such a wrapper I could not find one that would satisfy all of these requirements. I did find many examples of service wrappers but while each had various pieces of the functionality I needed none had all the requirements. The biggest drawback I found in previous design was forcing the user to use an interface. Unfortunately I could not use this pattern due to the requirement of minimizing any changes to existing code. What I needed was a service that could execute any arbitrary code.
read more...
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
submitted by
salim
1 year, 2 months ago
eggheadcafe.com — Even in "Intranet" environments, where the risk of hacking or "stealing" of connection strings is usually very low, nervous managers always seem to want to see connection strings either encrypted (when in a configuration file) or stored in the Registry, or "something" similar such that the plain text connection string is not easily visible to the "casual hacker".
read more...
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
submitted by
salim
1 year, 2 months ago
tech-review.org — Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the
same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
Description: An unhandled exception occurred during the execution of the current web request.
Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Validation of viewstate MAC failed. If this application is hosted by
a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm.
AutoGenerate cannot be used in a cluster
read more...
add a comment
|
category: ASP.NET | Views: 5
|
|
tags:
webfarm, garden, Viewstate, MachineKey | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
salim
1 year, 5 months ago
geekswithblogs.net — After working whole day on system (phew) got something to smile. read more...
add a comment
|
category: Other | Views: 2
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|

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