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 C Miller, on September 22nd, 2011%
I recently upgraded from Visual Web Developer 2008 to Visual Web Developer 2010 and have run into an issue, I started seeing a configuration error. In two cases I had been working on web applications in Visual Web developer 2010.
Case 1 appeared after I had opened an existing application and when prompted, do I want to . . . → Read More: .NET 4 Hosting :: Working with an error message: “Unrecognized attribute targetFramework”
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 C Miller, on September 20th, 2011%
In ASP.NET 4.0 there are new features that enable developer to make SEO friendly websites very easily. And if you google out, you will find plenty of article which explain this feature. But I am more interested in Response.RedirectPermanent. As the name suggest it is used to redirect permanently moved resources to new location. And most . . . → Read More: ASP.NET 4 Hosting :: The Difference between Response.Redirect and Response.RedirectPermanent
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