Thursday, October 17, 2013

HttpForbiddenHandler

How to block xml file download requests? Check out below.

If your code deploys to box having IIS7.0 only this web.config update is required.
In the Web.config file add the <httpHandlers> configuration element under the <system.web> element.

<system.web>
    <httpHandlers>
        <add verb="*" path="*.xml" type="System.Web.HttpForbiddenHandler" />
    </httpHandlers>
</system.web>


If your code gets deployed to box which has IIS6.0 or IIS 5.0 along with above web.config update you are required to add application extension mapping in IIS.


Friday, March 14, 2008

What is XAML?

XAML (pronounced "Zamel") stands for eXtensible Application Markup Language. It is Microsoft's new declarative language for defining application user interfaces. XAML provides an easily extensible and localizable syntax for defining user interfaces separated from application logic, similar to the object-oriented technique for developing n-tier applications with a MVC (Model-View-Controller) architecture.XAML was created by Microsoft expressly for the purpose of interfacing with its .NET Framework on its Windows Vista (formerly codenamed "Longhorn") operating system through the WinFX (codename "Avalon") presentation subsystem runtime environment. XAML gives developers the ability to control the layout of all .NET user-interface elements such as text, buttons, graphics, and listboxes, using XML . Because XAML is XML-based, your code must be well-formed XML.

Wednesday, February 20, 2008

Path to Java certification: SCJP

find tips from SCJP experts, giving you their expert advice on cracking SCJP.

Tuesday, February 19, 2008

Path to Oracle Certified Professional

Oracle experts please give your expert comments to guide people to achieve OCP.

Some thing abt AS400

Hi Friends
I am Ravi working as a Software Engineer on AS400 platform.Many of us dont know abt AS400 its true even i knew it when i got training on it.AS400 is one of the costly technology and very
old technology like Maneframes. It is also an IBM product, it is very similar to Mainframes if we talk abt market then market is always open for AS400 professionals bcoz no college and no training institute can provide the proper training on this technology that is bcoz it is not possible for any college or training institute to afford AS400 server which costs in crores but there are few training institutes available in market which are providing training.

Students those are from Non IT fields can also go for AS400 as there career option bcoz AS400 doesnot require any basic knowledge of programming means any one can start it from any where.
If any one need any help u can contact us through this site .Going forward u will find many important documents related with all the technologies on this site.

All the Best friends......

Monday, February 18, 2008

SQL Server Questions

Find some interesting questions in SQL Server..

Saturday, February 16, 2008

C# Interview Questions

Check out for C# interview questions.