Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 1 of 3) 61 Result(s) found 

 

Accessing user controls from the code-behind
Total Hit (2754) When you add a user control to an ASP.NET page, Visual Studio .NET does not add a control declaration as it does when you add standard ASP.NET web controls. The result is that you can't directly access the user control from the code-behind and programmatically change its properties and call its meth ....Read More
Rating
Adding a confirmation popup for delete buttons defined within templates
Total Hit (3624) The DataList and DataGrid controls easily allow to add a "Delete" button/hyperlink in your template. When clicked, this button/link raises a DeleteCommand event that you can handle to delete the data item of the parent DataList's/DataGrid's row. Here's an example that shows how to declare two column ....Read More
Rating
Creating a scrollable DataGrid
Total Hit (2806) When you create a DataGrid, it would be often good to specify its height, and have the DataGrid show a scrollbar if the content is longer than the given height. This would allow to make up a fixed layout that doesn't get messed up if there are a few or a lot of lines/records to show. The DataGrid co ....Read More
Rating
Hiding controls defined within templates to some users
Total Hit (2628) It happens frequently that you want to hide some input controls or links if the current user is not logged in (it runs with the anonymous account), or if the logged user is not a member of a specific group. For example, you may want to hide the Edit/Delete buttons to users that are not Administrator ....Read More
Rating
Implementing a two-way sorting for the DataGrid control
Total Hit (2606) DataGrid's sorting functionality is not automatic, the control takes care of "just" rendering the column headers as hyperlinks, and gives you the ability to handle the click on those links, by means of the SortCommand event. Then you manually sort the records (by means of a new DataView from an exis ....Read More
Rating
Moving the focus on a control when the page loads
Total Hit (2521) ASP.NET doesn't provide a built-in method for giving a control the input focus when the page loads. In fact, you can assign the TabIndex properties to controls on a page, but you can't use this property to set the initial focus on a control of your choice. The following procedure provides you wit ....Read More
Rating
Showing a graphical checkmark on DataGrid's boolean columns
Total Hit (2620) While working with template-based controls such as the Repeater, DataList or DataGrid, it often happens that you don't want to show just plain text as it is retrieved from the data source, but want to interpret the data and represent it in other ways. For example, you may want to show a graphical ch ....Read More
Rating
Creating DataGrid's hyperlink columns with multiple parameters in the Url
Total Hit (2417) The DataGrid's HyperLinkColumn column is great to have a column with an hyperlink that points to an Url with a parameter whose value is taken from the data source, but what if you need to build the target Url with more than one parameter taken from the data source? In this case you can use a templat ....Read More
Rating
FindControlRecursive - Find a control in a hierarchy of controls
Total Hit (2730)
Rating
GetControlHtml - Retrieving the HTML code generated by the input ASP.NET server control
Total Hit (2583)
Rating
GetIndexFromText - Return the index in a ListControl given a text
Total Hit (2327)
Rating
GetIndexFromValue - Return the index in a ListControl given a value
Total Hit (2294)
Rating
GetListSelections - Retrieve a comma delimited list of items selected in a List control
Total Hit (3749)
Rating
HasUploadedFile - Return whether a file uploader control has posted a file to the server
Total Hit (2490)
Rating
SelectItemFromText - Select the ListControl element with a given text
Total Hit (2458)
Rating
SelectItemFromValue - Select the ListControl element with a given value
Total Hit (2550)
Rating
SetListSelections - Select in a List control the items passed as a comma delimited list
Total Hit (2607)
Rating
This is a link to a different site Injecting Client-Side Script from an ASP.NET Server Control
Total Hit (1127) While, technically, all of an ASP.NET server control's functionality can be performed on the server-side, often the usability of a server control can be greatly enhanced by adding client-side script. In this article we'll examine two means by which server controls can emit client-side script. We'll ....Read More
Rating
This is a link to a different site Using the TreeView IE Web Control
Total Hit (1105) Learn about the TreeView Web control and how to start using it in your ASP.NET Web applications. In addition to the standard ASP.NET Web controls (like the TextBox, DropDownList, DataGrid, DataList and so on) Microsoft has released an additional set of Web controls designed to take advantage of feat ....Read More
Rating
This is a link to a different site Displaying XML Data in the Internet Explorer TreeView Control
Total Hit (989) You have to tip your hat to Microsoft when it comes to the amount of free developer resources they have made available for us ASP.NET developers. First, there was the Web Matrix Project, a free GUI/RAD tool designed specifically for creating ASP.NET Web pages. Then the ASP.NET team provided the comp ....Read More
Rating
This is a link to a different site Pre-Selecting Items in a CheckBoxList Control
Total Hit (938)
Rating
This is a link to a different site Working with Dynamically Created Controls
Total Hit (958)
Rating
This is a link to a different site Dynamic Controls in ASP.NET
Total Hit (869)
Rating
This is a link to a different site Using the CustomValidator Control
Total Hit (2689) One annoying task that most every developer has had to face in the past is form validation. Since forms are an integral part of dynamic, data-driven Web sites, it is essential that a user's query into a form fit the specified guidelines. For example, in a Web site like Amazon.com where users are ent ....Read More
Rating
This is a link to a different site Customizing DataBinded Output in Templates
Total Hit (922)
Rating
This is a link to a different site Adding controls to PlaceHolders dynamically
Total Hit (960) A very powerful and flexible way to program sites in ASP.NET is to one .aspx which contains a PlaceHolder control for each area of your screen. You then dynamically fill these controls during each hit of your page. This code will get you started. Notice the "FindControl" method with which you identi ....Read More
Rating
This is a link to a different site Simple Login Control
Total Hit (1036) This control can be used to validate a user's login. This control is compiled as a library and can be used with any ASP .Net application.
Rating
This is a link to a different site Finding the Control ID
Total Hit (915) How do you find the control ID of the control that made the Postback? Here you go...
Rating
This is a link to a different site Dynamically Adding Controls to a Web Page
Total Hit (888) You may add controls to a web page dynamically as needed at run time rather than at design time. This short article shows you how.
Rating
This is a link to a different site HOW TO: Close Browser Window From Button Web Control
Total Hit (799) Generally we want to perform tasks like closing browser window from client side JavaScript itself. However, there might be cases when we should perform some another processing - may be logging or usage tracking - when user explicitly closes the application. This How To will tell you how to code serv ....Read More
Rating


(Page 1 of 3) 61 Result(s) found  1 2 3

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.