Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > C-Sharp > Server Controls
Search:
What's New - What's Hot
Listings for DataGrid Control DataGrid Control (303)
Listings for DataList Control DataList Control (67)
Listings for DataSet Control DataSet Control (6)
Listings for LinkLabel Control LinkLabel Control (0)
Listings for List Box Control List Box Control (273)
Listings for ListView Control ListView Control (133)
Listings for TextBox Control TextBox Control (85)
Listings for TreeView TreeView (179)


TextBlock Content Model Overview     
Total Hits: 27  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

This content model overview describes the supported content for a TextBlock. A TextBlock is a lightweight control for displaying small amounts of flow content.
This topic contains the following sections.
* TextBlock Content Property
* Adding Flow Content
* Types That Share This Content Model
* Types That Can Contain TextBlock Objects
* Related Topics...

TextBox Content Model Overview     
Total Hits: 32  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

This content model overview describes the supported content for a TextBox. A TextBox is a control that can be used to display or edit unformatted text. A TextBox supports unformatted text only. For applications that require support for richer content, see RichTextBox....

TextBoxFor(u = u.Name) - Unleash the power     
Total Hits: 53  |  Today: 0Author: karl      Rating:  
Read Reviews | Write Review |  Your Rating: 

Three weeks ago, Jeremy Miller and Chad Myers laid down their MVC approach. From the comments it's clear that many of their goals resonated with fellow developers. Since I happened to be starting a large-scale application using MVC, I was very interested in learning more. The videos, from their presentation, detailed their customized MVC stack, but didn't really provide us with anything to hit the ground running (i.e. working code).Chad has stated that he's working on some code, but I figured I'...

Word Processing with an Extended Rich Text Box Control     
Total Hits: 197  |  Today: 0Author: Scott Lysle      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article describes an easy approach to building a simple word processor around an extended version of the Rich Text Box (RTB) control; Microsoft has made available an extended version of the RTB control that greatly eases the requirements for printing the control's text or RTF content. This article and the sample application will use this extended version of the RTF control to demonstrate the following word processor related functions:
*Opening Text, RTF, HTML, or other text files int...

Show All TextBox Text After Resize     
Total Hits: 101  |  Today: 0Author: hayes.adrian      Rating:  
Read Reviews | Write Review |  Your Rating: 

The .NET TextBox control is merely a wrapper for the old Win32 edit box control. This limits its functionality, and makes it difficult to customize. Even simple tasks like resizing the height of the TextBox require you to use complex workarounds to accomplish. When you resize a TextBox where some of the text is off the left edge of the control, it never repositions the text to show as much as the control will handle. To overcome this limitation, we need to modify the TextBox text selection....

Passing value from popup window to parent form's TextBox     
Total Hits: 868  |  Today: 0Author: mbanavige      Rating:  
Read Reviews | Write Review |  Your Rating: 

Passing values from a popup window back to the parent page is an often asked question. Especially when there is a GridView type control in the popup. In the following example we will be using two forms. The parent form will be parent.aspx and the popup will be popup.aspx. Also note that the parent.aspx form is derived from some MasterPage. Code is provided both in VB.Net and C#.Net....

IronTextBox2     
Total Hits: 85  |  Today: 0Author: JoeSox      Rating:  
Read Reviews | Write Review |  Your Rating: 

As of this writing, IronPython version 2 (IP2) is now in beta after months of alpha builds so I decided it was safe enough to start on the next version of IronTextBox to work with IP2. If you are working with IP1.1, here is the version of IronTextBox that will work with IP1.1. Many new IronPython users often ask how to host an IronPythonEngine within a Form, or for simple out of the box code to look at. I first created IronTextBox when IronPython was rather new. Since then, many improvements and...

A numeric textbox with a twist     
Total Hits: 152  |  Today: 0Author: Tony Zackin      Rating:  
Read Reviews | Write Review |  Your Rating: 

For a project I was recently working on I needed to specify a quota size. For production it could always be GB but, for testing purposes, I wanted to use MB or even KB values. That got me thinking about how to enter this kind of information more easily where the magnitude of the number could be specified as part of the number much like the exponent of a floating-point number, only more general. So, I have invented yet another numeric text box but, with an additional twist. This textbox allows a ...

Boxing and Unboxing in C# .Net     
Total Hits: 209  |  Today: 0Author: AzamSharp      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article I will explain the concepts of Boxing and UnBoxing. Microsoft Visual C# provides us with Value types and Reference types. Value Types are stored on the stack and Reference types are stored on the heap. The conversion of value type to reference type is known as boxing and converting reference type back to the value type is known as unboxing....

ATLAS AUTO-SUGGEST TEXTBOX     
Total Hits: 237  |  Today: 0Author: AzamSharp      Rating:  
Read Reviews | Write Review |  Your Rating: 

Atlas Project has been introduced by Microsoft which works with the ASP.NET 2.0 framework. Atlas enables your controls to make client side calls and hence save the roundtrip to the server. This also means that by using Atlas you can refresh your page without making a Postback. In this article I will demonstrate that how you can use the AutoCompleteExtender control which ships with the Atlas framework....

Textbox Web Server Control     
Total Hits: 163  |  Today: 0Author: ASPAlliance      Rating:  
Read Reviews | Write Review |  Your Rating: 

We can get inputs from user in variety of ways. One of the way is through textbox. In this session, we will see how to ..

1. Get an input from the user
2. Create a textarea
3. Get passwords as input...

Pocket PC TimeBox Control     
Total Hits: 60  |  Today: 0Author: Fons Sonnemans      Rating:  
Read Reviews | Write Review |  Your Rating: 

I own a Pocket PC since a few months. It's a nice peace of hardware although I didn't use it much. There wasn't much practical use for it. Now I have decided to write my own Time Registration and maybe my own Car Mileage Administration application. In both Smart Device Applications I have to enter a Time regullary. Microsoft didn't supply me with a good control for this so I decided to write one....

Creating a Text Box Server Control with Color Highlighting     
Total Hits: 33  |  Today: 0Author: Grant Killian      Rating:  
Read Reviews | Write Review |  Your Rating: 

Creating your own controls is a great way to leverage the .NET Framework in your applications. You can extend existing controls with your own properties and behavior, combine controls together into composite controls, and even create your own control from scratch. Furthermore, by using client-side JavaScript with our controls, we can achieve a powerful level of interactivity and sophistication without having to constantly post back to the server. In this article, I'll walk through creating a cus...

C# Content Management: FreeTextBox Editor     
Total Hits: 202  |  Today: 0Author: Salman Ahmed      Rating:  
Read Reviews | Write Review |  Your Rating: 

If you have any sections of your site in which users input text, you will know the limitations that regular text input provides (html textarea's). There are many products out on the market that simulate a WYSIWYG editor, here I present to you a freely available rich text content editor....

Speech Option for Textbox's Text in .Net     
Total Hits: 261  |  Today: 0Author: Kapil Dhawan      Rating:  
Read Reviews | Write Review |  Your Rating: 

Here is one of the example to implement the Speech Option for TextBox' text.All you need is to add a dll called SpeechLib.dll...

IronTextBox - a TextBox and UserControl based console that may be used with IronPython.     
Total Hits: 215  |  Today: 0Author: JoeSox.      Rating:  
Read Reviews | Write Review |  Your Rating: 

Microsoft's IronPython 1.0 (or try IronPython's main website for the latest release) is a release of the Python programming language for the .NET platform. Below are some of the most important of IronPython's 1.0 namespaces and counting:Please keep in mind that IronPython is written for a CLI platform. I became interested in it after learning about ConceptNet: A Practical Commonsense Reasoning Toolkit written in Python. I started a C# library class for ConceptNet and needed to trace though it. S...

Validating Edit Controls     
Total Hits: 272  |  Today: 0Author: Alvaro Mendez      Rating:  
Read Reviews | Write Review |  Your Rating: 

Textbox controls are often used to enter dates, times, currency values or preformatted numeric data such as phone numbers. A control that allows its user to only enter a specific type of data is useful for several reasons:
The user may do less typing if the control automatically fills in characters such as dashes or slashes.
The user gets immediate feedback if he/she enters an invalid character.
The entered data is much more likely to be valid when the user "submits" it.
The class...

Retrieve the Caret Position by Using an Extended TextBox Class     
Total Hits: 376  |  Today: 0Author: CodeGuru      Rating:  
Read Reviews | Write Review |  Your Rating: 

Extend the TextBox class with properties for retrieving the (line, column) coordinate of the caret current position...

Syntax highlighting textbox written in C#     
Total Hits: 615  |  Today: 0Author: CodeProject      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article describes the code of a RichTextBox that knows how to highlight parts of the text and provide auto-completion.
This code is a class derived from .Net's RichTextBox. It offers syntax highlighting and auto-completion features....

Masked TextBox Control     
Total Hits: 2396  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

The TextBox control is the most used control in window program. It also cause a lot of problem either from QA or user, because invalid data that was entered. Using masked control will save a lot of time for developer and reduce the bugs. This masked intelligent user control enhances the function of TextBox control, which can mask the Date, IP Address, SSN, Phone number, digit, decimal and check the validation, automatically set delimit location....



Disclaimer - Privacy
© 2002-2012 DevASP.net