Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Friday, September 03, 2010

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 > Knowledge Base > ASP.Net
Search:
What's New - What's Hot
Listings for Administration Tool Administration Tool (3)
Listings for Authentication Authentication (18)
Listings for Browser Browser (10)
Listings for Caching Caching (39)
Listings for code behind code behind (3)
More Categories for Configuration Configuration (3)
More Categories for Database Database (18)
Listings for Debugging Debugging (12)
More Categories for Errors and Bugs Errors and Bugs (41)
Listings for Event Log Enteries Event Log Enteries (4)
Listings for IIS IIS (5)
Listings for Introduction Introduction (3)
Listings for Migration Migration (4)
Listings for Mobile Webform Mobile Webform (3)
Listings for Multiprocessor System Multiprocessor System (2)
More Categories for Office Documents Office Documents (12)
Listings for Security & Encryption Security & Encryption (22)
More Categories for Server Application Server Application (3)
Listings for Server Controls Server Controls (18)
Listings for Server Variables Server Variables (8)
Listings for Session State Session State (7)
Listings for Tips & Tricks Tips & Tricks (60)
More Categories for Web Application Web Application (5)
Listings for Web Controls Web Controls (33)
Listings for Web Form Web Form (37)
More Categories for Web Services Web Services (9)
Listings for XML and ASP.Net XML and ASP.Net (14)
 


How to upload file to SharePoint document library with Object Model    Version: 0.00       Price: $0.00   
Total Hits: 24  |  Today: 0 Author: Goldytech       Rating:  
Read Reviews | Write Review |   Your Rating: 

So far so good, it has been wonderful journey of learning SharePoint. With every end of day I learn something new and wants to share that with my readers. So here I am again showing you one more aspect of SharePoint programming. In my earlier post I had written about, Programming SharePoint Lists, in which I showed all the CRUD operations that can be done on SharePoint List. Here I shall be talking about the document libraries. Well they are also one type of the list , but the vast difference be...

How to Use Linq    Version: 0.00       Price: $0.00   
Total Hits: 24  |  Today: 0 Author: Mehulthakkar1       Rating:  
Read Reviews | Write Review |   Your Rating: 

Linq ( Language Integrated Query) provide you command over manipulating data. Using Linq we can write the query expression in code. With the use of Linq we can manipulate any object which is implemented by the IEnumerable T interface, XML, Dataset or relational database....

How to: Use FileSystemWatcher to listen to local drives    Version: 0.00       Price: $0.00   
Total Hits: 34  |  Today: 0 Author: Jaish Mathews       Rating:  
Read Reviews | Write Review |   Your Rating: 

I recently have done with some tasks on FileSystemWatcher class which is under System.IO namespace. This class is not a new one, but looks very interesting that without any customized service from our side, it's capable of listening to your files system and will report to you regarding any changes happening to your local drives. Another reason why I am publishing this article is that I faced with a cross thread issue during execution. But I tackled that using delegate. This also will be fruitfu...

How To Do Amazingly Simple Searches With NSArray & NSPredicate    Version: 0.00       Price: $0.00   
Total Hits: 42  |  Today: 0 Author: MobileAppMastery       Rating:  
Read Reviews | Write Review |   Your Rating: 

Cocoa-Touch ships with an super-useful class that will help you search through your lists of objects just like they were coming from a database. The class is called NSPredicate which also works with Core Data. This is very powerful stuff, especially what you are working with data intensive applications....

How to: Anchor and Dock Child Controls in a FlowLayoutPanel Control    Version: 0.00       Price: $0.00   
Total Hits: 45  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

The FlowLayoutPanel control supports the Anchor and Dock properties in its child controls.
To anchor and dock child controls in a FlowLayoutPanel control

1.

Create a FlowLayoutPanel control on your form.
2.

Set the Width of the FlowLayoutPanel control to 300, and set its FlowDirection to TopDown.
3.

Create two Button controls, and place them in the FlowLayoutPanel control.
4.

Set the Width of the first button to 2...

How to: Inherit from the Control Class    Version: 0.00       Price: $0.00   
Total Hits: 48  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

If you want to create a completely custom control to use on a Windows Form, you should inherit from the Control class. While inheriting from the Control class requires that you perform more planning and implementation, it also provides you with the largest range of options. When inheriting from Control, you inherit the very basic functionality that makes controls work. The functionality inherent in the Control class handles user input through the keyboard and mouse, defines the bounds and size o...

How to: Set HTML Server Control Properties Programmatically    Version: 0.00       Price: $0.00   
Total Hits: 63  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

HTML server controls are of two slightly different types. The HTML elements most commonly used in forms are available as individual HTML server controls, such as HtmlInputText, HtmlInputButton, HtmlTable, and so on. These HTML server controls expose their own, control-specific properties that map directly to HTML attributes. However, any HTML element can be converted to a control. In that case, the element becomes an HtmlGenericControl with base class properties such as TagName, Visible, and Inn...

How to: Set ASP.NET Server Control Properties    Version: 0.00       Price: $0.00   
Total Hits: 47  |  Today: 0 Author: micro       Rating:  
Read Reviews | Write Review |   Your Rating: 

Setting a control's properties defines its appearance and behavior. This topic addresses how to set control properties at design time using Visual Web Developer....

How to: Add HTML Server Controls to a Web Page Using ASP.NET Syntax    Version: 0.00       Price: $0.00   
Total Hits: 45  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

Adding HTML server controls is like adding any HTML element, except that you convert the element to a control so that you can work with it in server code....

How to: Add Server Controls to an ASP.NET Web Page Using ASP.NET Syntax    Version: 0.00       Price: $0.00   
Total Hits: 41  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

#If you are in a visual designer, switch to source-editing view.
#Type the element representing the control into the .aspx file. The exact syntax you use depends on the control you are adding, but in general the following applies:
* Controls must include the attribute runat="server".
* Set the control's ID attribute unless the control is part of a complex control and will be repeated (as in GridView, FormView, DetailsView, Repeater, or DataList controls)....

How to: Add Controls to an ASP.NET Web Page Programmatically    Version: 0.00       Price: $0.00   
Total Hits: 52  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

At times it is more practical to create a control at run time than at design time. For example, imagine a search results page in which you want to display results in a table. Because you do not know how many items will be returned, you want to dynamically generate one table row for each returned item....

Dynamically Updating Portions of a Cached Page    Version: 0.00       Price: $0.00   
Total Hits: 48  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

Caching a page can dramatically increase the performance of a Web application. However, in some cases you need most of the page to be cached and some fragments within the page to be dynamic. For example, if you create a page of news stories that is entirely static for set periods of time, you can set the entire page to be cached. If you wanted to include a rotating ad banner that changed on every page request, then the part of the page containing the advertisement needs to be dynamic....


DevASP.Net - Disclaimer - Privacy
© 2002-2010 DevASP.net