|
|
|
|
|
Total Hits: 77 | Today: 1
|
Author: Dan Glass
|
Rating:
|
|

I found the need to page through a Repeater object in C#, since it is light weight and offers the flexibility that DataGrid doesn't have. There are a couple of bugs with the ViewState, but this is a work in progress and I hope that it will be resolved. The control works fine as-is, though. The implementation of the paging was inspired from the DataGrid directly using Anakrino, the decompiler for .NET....
|
|
|
|
Total Hits: 112 | Today: 0
|
Author: Microsoft .Net Framework SDK
|
Rating:
|
|

The Site Navigation API is a programming abstraction for navigation data that accesses navigation data using configurable providers. A site navigation provider separates the data storage details of navigation data from the rest of the API. The Site Navigation API exposes the navigation data through the SiteMap and SiteMapNode classes. The SiteMap class returns the SiteMapNode instance that corresponds to the current page. It also provides access to the provider(s) that have been configured for t...
|
|
|
|
Total Hits: 102 | Today: 0
|
Author: israr Ali .NET.
|
Rating:
|
|

Master Pages are very strong concept of Asp.Net 2.0 and with the use of Navigation Controls i t becomes very easy to develop a good looking site within 15 minutes....
|
|
|
|
Total Hits: 243 | Today: 0
|
Author: Kent Boogaart
|
Rating:
|
|

I've been working on an ASP.NET 2.0 website recently, and have used the new sitemap features to implement menu and breadcrumb features. However, I had need to dynamically modify the sitemap structure for a specific page. Others who have tried this will likely be aware of the SiteMap.SiteMapResolve event, which can be used to dynamically construct a sitemap node. However, this event has a rather annoying design flaw - it is static. As such, attaching an event handler to it will result in that han...
|
|
|
|
Total Hits: 29 | Today: 0
|
Author: Nancy Michell
|
Rating:
|
|

Q I'm getting intermittent errors in Microsoft Internet Explorer, and they seem to be related to using ASP.NET 2.0 with SmartNavigation turned on. What exactly does SmartNavigation do and when should I use it?
A SmartNavigation is a property of the Page class in System.Web.UI. When a request comes in to Internet Explorer 5.5 or higher and SmartNavigation is turned on (set to true), the following actions are performed:
* The flash caused by navigation is eliminated * The ...
|
|
|
|
Total Hits: 51 | Today: 1
|
Author: Himanshu D
|
Rating:
|
|

This article demonstrates the ASP.NET 2.0 feature to extend menu generation using SiteMapPath. Here, I will be showing how to generate the Web.Sitemap file using the XmlTextWriter at runtime, retrieving the data from SQL Server....
|
|
|
|
Total Hits: 45 | Today: 0
|
Author: Richard Dudley
|
Rating:
|
|

Since the release of ASP.NET 2.0, several starter kits have been released as examples of programming practices. These kits are also good starting points for actual websites and can be valuable to novice webmasters. This article will demonstrate how to download and install the Club Site Starter Kit, configure a different database to prepare for a production site and change the appearance by modifying the master page....
|
|
|
|
Total Hits: 22 | Today: 0
|
Author: Mark Robinson
|
Rating:
|
|

This article presents an excerpt from the book, Microsoft SQL Server 2005 Reporting Services for Dummies, by Mark Robinson. Learn how to produce interesting navigation and drill down reporting using the basic tools provided within SQL Server 2005 Reporting Services....
|
|
|
|
Total Hits: 55 | Today: 0
|
Author: erjan123
|
Rating:
|
|

This project based on my previous project CS02OpenGL3DNavigationTaoCSharp, however I did add more features in it. I think one of the most important knowledge for beginners in OpenGL is to learn how to create 3D space and navigate in this space. It can be very confiusing if you don't know where are you actually looking at. This program shows how to navigate in 3D space. This is a beginner level program to show how to navigate in 3D space. It uses glRotatef(), glTranslatef() and glLookAt() func...
|
|
|
|
Total Hits: 13 | Today: 0
|
Author: Nancy Michell
|
Rating:
|
|

How do I create a button on my page that will enable the user to access a previously visited page? You can use the JScript® function history.back to take you back one page in the history list, or the list of URLs that your browser has visited. You can use any negative value in the parentheses. For example, history.back(-6) will take you back six URLs.You can use an HTML form to make the button—this way the button doesn't have to be an image, and it will render quickly....
|
|
|
|
Total Hits: 21 | Today: 0
|
Author: Dino Esposito
|
Rating:
|
|

The list of ASP.NET rich data-bound controls is a long one, but it's not all-encompassing. You won't find any Microsoft® .NET counterpart for the Data control—a scrollable and updateable binding context that data-bound controls could rely on to refresh their user interface. The original Data control allowed for simple movements—first, next, previous, and last. It worked on top of a Recordset object and exposed the UpdateRecord method to save changes according to the capabilities of the currently...
|
|
|
|
Total Hits: 17 | Today: 1
|
Author: David Rosa
|
Rating:
|
|

Use the XPathNavigator to read XML. This article demonstrates how you can do, using conditions. This article demonstrates how to read data from a XML File, using XPATH. So, let the words aside and go to work. In next article we will update a xml file using CData Sections. Thanks for your attention. Keep a running update of any changes or improvements you've made here....
|
|
|
|
Total Hits: 8 | Today: 0
|
Author: Bipin Joshi
|
Rating:
|
|

If you anytime traveled to unknown areas you know the importance of maps. They help you to travel easily making your journey pleasurable. The same holds true for web sites. The visitors coming to your web sites should be presented with simple yet flexible navigation structure so that they can travel to various parts of your web site easily. ASP.NET provides a feature called SiteMap that help you achieve this goal. In this article we will explore what site maps are and how to develop web site nav...
|
|
|
|
Total Hits: 7 | Today: 0
|
Author: msdn.microsoft
|
Rating:
|
|

The SqlDataNavigator control that I have worked on in the last two installments of Cutting Edge is a Web control that supports two-way data binding. The control features a form-based user interface to display all the contents of a table row. The form's data-bound elements are surrounded by a toolbar with navigation buttons and links for operations such as insertion, deletion, and update. Figure 1 shows the control. Last month, I extended it to support joined fields in both view and edit mode. As...
|
|
|
|
Total Hits: 10 | Today: 0
|
Author: msdn.microsoft
|
Rating:
|
|

In last month's column I began an ambitious project: building a SQL Server™-specific DataNavigator control that supports two-way data binding. The control I'll present in this column, SqlDataNavigator, is just an extension of last month's DataNavigator. The SqlDataNavigator ASP.NET control described here is meant to be the Microsoft® .NET counterpart of the Data control—an old Visual Basic® control that caused its share of headaches. The control moves from one record to the next according to a g...
|
|
|
|
Total Hits: 6 | Today: 0
|
Author: Rob Howard
|
Rating:
|
|

In my childhood I spent several weeks a year in Holland with my extended family. As a young American boy I was fascinated with the electric Dutch trains, something we didn't see in my hometown of Dallas, Texas. My cousins entertained me by taking me out in their boats to watch the trains go by. Sitting in the water near the tracks you could hear the approaching train as a slight steely whisper reverberating through the rails, building slowly to a crescendo as the train rushed past. Thinking abou...
|
|
|
|
Total Hits: 14 | Today: 1
|
Author: Sudheendra Desai
|
Rating:
|
|

One interesting way of showing your error messages when using validation controls is to use images instead of text for identifying errors on your ASP.NET pages. Here I will demonstrate you that by using Custom validator. Why Custom validator? Because it provides more flexibility in writing validation rules using javascript....
|
|
|
|
Total Hits: 20 | Today: 1
|
Author: JulianArevalo
|
Rating:
|
|

I wasn’t really sure if Google was not being effective, or if it was just me. I had been surfing the web for days searching for a simple solution to a simple problem: to be able to navigate through a database, using VCR-style controls (I can’t believe I’ve just said VCR…I meant DVD controls.) In ASP.NET, the easiest way to move from record to record is putting a datagrid or a datatable, which was exactly what I didn’t wanted to use. I also came across a C# soft that did pretty much the same as D...
|
|
|
|
Total Hits: 21 | Today: 0
|
Author: Gunawan Hadikusumo
|
Rating:
|
|

When I was reading Binding a Server Control to a Data Source section from ASP.NET Unleashed book, authored by Stephen Walther, I was tempted to find another way around to navigate and control the records on the web page. It might be a good idea in terms of challenge, but not in terms of practical web development. An old proverb says: There are many ways to go to Rome, someone may take the shortest cut, others probably may take the most common way people do. What I am doing here is just for chall...
|
|
|
|
Total Hits: 17 | Today: 0
|
Author: santosh poojari
|
Rating:
|
|

I had made implementing one of the paging functionalities an assignment during my free time. I have written this article so that one can draw some idea and make some control out of it. .NET has provided ready to go paging functionality for DataGrid, DataList etc. But when one has to create a dynamic table populated with thousands of records without using any ASP.NET control, then we have the write code manually....
|
|
|
|
|
|