mnour

Stories kicked by mnour

Zodiac.NET 1.0 - Survey Engine (mentor-logic.com)

submitted by mnourmnour(320) 2 years, 8 months ago

Zodiac.NET is a .NET web based survey and form engine software toolkit for Microsoft .NET written in pure managed C#. Zodiac.NET help you to add questionnaires, surveys and exam wizards in your .NET web application. The engine provides you with several types of questions to fit the different needs of the survey makers. The questions and users answers are created and collected in XML format in order to facilitate the integration with custom analysis and reporting services in your application. read more...

add a comment |category: |Views: 75

tags: another

ASP.NET MVC Routing Using XML Custom Configuration Settings(mnour.blogspot.com)

submitted by mnourmnour(320) 3 years, 6 months ago

To configure the routing of any ASP.NET MVC application, you need to add some routing code in the Global.asax file. However, it would be better if we can transfer all these configuration stuff to be a neat XML configurations in web.config. I came through a solution to make the MVC configuration editable through custom configuration settings in the web.config file. read more...

add a comment |category: |Views: 87

tags: another

Quick Tip: Invoke A URL From SQL Server Agent(jondavis.net)

submitted by stimpy77stimpy77(1271) 3 years, 7 months ago

Perform batch jobs from a web context. read more...

add a comment |category: |Views: 15

tags: another

Form validation with ASP.NET MVC preview 5(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 8 months ago

In earlier ASP.NET MVC previews, form validation was something that should be implemented "by hand". Since the new ASP.NET MVC preview 5, form validation has become more handy. Let me show you how you can add validation in such a ridiculously easy manner. read more...

1 comment |category: |Views: 369

tags: another

Enterprise Service Bus Messaging Using nServiceBus(weblogs.asp.net)

submitted by mnourmnour(320) 4 years, 1 month ago

I have been working lately with a big group of fellow developers here in SilverKey on the architecture and design of a relatively big project that required much services and messaging work. We thought that we should implement our public services the REST way using WCF for .NET 3.5, with so many customizations, and that we'll use a library called nServiceBus for internal messaging. nServiceBus is a framework for handling publisher/subscriber (pub/sub) model of messaging. It provides reliable messaging via the Enterprise Service Bus (ESB) pattern, and uses MSMQ as the physical bus. read more...

add a comment |category: |Views: 183

tags: another

Thinking In REST(mnour.blogspot.com)

submitted by mnourmnour(320) 4 years, 1 month ago

REST or WS-*? The debate which will never end. While REST is taking the lead gradually, the community see many drawbacks in using the traditional WS-*. The complexity and overhead in using WS-*, REST simplicity and how they fit the web architecture are always the main points of the argument. read more...

add a comment |category: |Views: 14

tags: another

jQuery Validation Plugin(mnour.blogspot.com)

submitted by mnourmnour(320) 4 years, 2 months ago

Today, I have the chance to work a bit with jQuery. Actually, we start to see many plugins in the web based on the library. One of the interesting plugins is: jQuery Validation Plugin by Jörn Zaefferer - which enables you to apply client validation to the web forms using jQuery. read more...

add a comment |category: |Views: 56

tags: another

ASP.NET MVC: Securing Your Controller Actions(blog.wekeroad.com)

submitted by alleyalley(2840) 4 years, 2 months ago

Many people on the forums want to know how to best protect Actions on their Controller using Forms Authentication. The MVC Team has done a nice job introducing Filters (using Attributes) to this latest drop of MVC, and in this post I’ll show you how to create a filter that can handle security. read more...

1 comment |category: |Views: 57

tags: another

Digitally Signing an XML Document and Verifying the Signature(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 3 months ago

Signing an XML document and then validating the digital signature of the document doesn't involve a lot of code - once you know how it works, but arriving there is quite the journey. This post describes setting up a certifcate for testing, signing an XML document with the Private key and then validating it with the Public key. read more...

add a comment |category: |Views: 28

tags: another

Securing Configurations(mnour.blogspot.com)

submitted by mnourmnour(320) 4 years, 3 months ago

Have you ever wanted to provide a level of protection to your values in the configuration files? Using aspnet_regiis will help you in encrypting the configuration section(s) in the config files. The executable resides in: "<windows_root>\Microsoft.NET\Framework\<framework_version>" and It was common to be used in installing ASP.NET on IIS. However, you can use it as well in encrypting/decrypting the configuration files. read more...

add a comment |category: |Views: 0

tags: another

VS 2008 Web Development Hot-Fix Roll-Up Available(weblogs.asp.net)

submitted by craigtpcraigtp(683) 4 years, 3 months ago

VS 2008 Web Development Hot-Fix Roll-Up Available, as posted to ScottGu's blog. Numerous fixes, including the "source code editor freeze" issue that a few people have experienced. read more...

add a comment |category: |Views: 8

tags: another

Delegates to LINQ [passing logic as a parameter] (part I)(aspxwizard.net)

submitted by bo2bo2bo2bo2(570) 4 years, 3 months ago

it's normal to pass data to a function just thow in a parameter of the type of data you want to pass and ur set read more...

add a comment |category: |Views: 17

tags: another

SQL Injection through cookies(barmagy.com)

submitted by FadyFady(275) 4 years, 4 months ago

Through my career as a developer I’ve seen many developers that are not aware about the possibility of SQL injection through cookies. Cookies in fact is a user input and as any input it must be validated and because normal users don’t see cookies that doesn’t mean attackers won’t temper with it. read more...

add a comment |category: |Views: 43

tags: another

Auto Implemented Properties(aspxwizard.net)

submitted by bo2bo2bo2bo2(570) 4 years, 5 months ago

code will act as a full blown property that maintains its instance value internally the compiler creates a member and maintains the value for the property read more...

add a comment |category: |Views: 2

tags: another

Top 10 Code Review Tips & Tricks(eknowledger.spaces.live.com)

submitted by eknowledgereknowledger(156) 4 years, 5 months ago

Top 10 Code Review Tips & Tricks that worked with me ;) read more...

add a comment |category: |Views: 64

tags: another

PLINQ = Parallel FX = PFX = The new Concurrent World(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 4 years, 7 months ago

Microsoft is developing a number of technologies to simplify the expression of parallelism in code. An example of this work is Parallel Extensions for the .NET Framework (PFX), a managed programming model for data parallelism, task parallelism, scheduling, and coordination on parallel hardware. read more...

1 comment |category: |Views: 78

tags: another