By Stephen Jackson, on November 7th, 2011%
Have you looked for a car recently? Visited a used car website lately? noticed how they had a dropdown menu?
Well they were using a CascadingDropDown or a variation of it.
The CascadingDropDown Extender is a Drop down menu where you can categorize your data, and by using a Web Service Method, you can avoid PostBack and have . . . → Read More: ASP.NET Hosting :: AJAX Control ToolKit Tutorial CascadingDropDown Using ASP.NET C#
By Wayne Plotche, on November 1st, 2011%
I will explain how to disable right click on website using Javascript. One day I got requirement like do not allow users to right click on website to see source code of page for that I written JavaScript functionality to disable right click on website to achieve this create new website and design your Default.aspx page . . . → Read More: ASP.NET Hosting :: How to Disable Right Click on ASP.NET Web Page Using JavaScript
By Wayne Plotche, on October 10th, 2011%
A couple of days ago I became aware of the following article: Security Hack Exposes Forms Authentication in ASP.NET. That never sounds good and Microsoft swiftly crafted a workaround to mitigate the attack. It simply consists of changing your web.config and adding a file with some piece of code . . . → Read More: ASP.NET Hosting :: ASP.NET Security Vulnerability
By Stephen Jackson, on October 3rd, 2011%
As given in the ASP.NET AJAX Toolkit documentation “The Accordion is a web control that allows you to provide multiple panes and display them one at a time. It is like having several CollapsiblePanels where only one can be expanded at a time.” Here are some tips that could help you out in your projects while . . . → Read More: ASP.NET Ajax Hosting :: Tips for Working with the ASP.NET AJAX Accordion Control
By Wayne Plotche, on September 30th, 2011%
In this article, I am explaining how to store images and pictures on disk and their path in the database with the help of FileUpload Control and also how to display those images in asp.net . . . → Read More: ASP.NET Hosting :: Display Images in GridView Control using the path stored in SQL Server database
By Stephen Jackson, on September 26th, 2011%
It is very much easier to apply CSS when we have ul,li elements as the HTML content. If we look into ASP.NET Menu Control till Version 3.5, its render as Table-TR-TD Tag. Though Table/Tr/Td is quite useful to display tabular data but sometime creates a big problem when we need to do more work with CSS. To . . . → Read More: ASP.NET 4 Hosting :: CSS Friendly Menu Control in ASP.NET 4.0
By Wayne Plotche, on September 20th, 2011%
Complex numbers are not new to numeral system. A complex number contains one real part and another imaginary part. We can easily implement such a Type, but with .NET 4.0 System.Numerics.dll contains a new Type (struct) called Complex which deals with Complex numbers .
You can represent a number in Complex form very easily using Complex type.
Lets . . . → Read More: ASP.NET 4 Hosting :: Using Complex Numbers in .NET 4.0
By Wayne Plotche, on September 13th, 2011%
Master-Detail Views are very common in data-driven Web pages. These views are used for rendering one-to-many relationships. ASP.NET Web forms provided the strong server controls like grids,lists and drop-down lists which supports the multiple levels of data.
In Master-Detail View we normally navigate among master records and drill down into the details of the records that are . . . → Read More: ASP.NET 4 Hosting :: Master-Detail Views using ASP.NET AJAX
By Stephen Jackson, on September 9th, 2011%
By Wayne Plotche, on September 7th, 2011%
How to get Internet protocol address using asp.net.Internet protocol is a communication between the nodes. Internet protocol, which is used to track a system host and used address the location. If we need to identify the user
who are all accessing our website and store the Internet protocol address in our database is very simple and . . . → Read More: ASP.NET Hosting :: How to Get IP Address Using ASP.NET