Saturday, September 23, 2006

ASP.NET Tips

DataGrid Custom Paging
http://samples.gotdotnet.com/quickstart/util/srcview.aspx?path=/quickstart/aspplus/samples/webforms/ctrlref/webctrl/datagrid/datagrid11.src


http://samples.gotdotnet.com/quickstart/aspplus/samples/webforms/ctrlref/webctrl/datagrid/doc_datagrid.aspx

Develop data grid paging
ref: http://dotnetjunkies.com/Tutorial/EA868776-D71E-448A-BC23-B64B871F967F.dcik

How to use the data adapter
http://www.codeproject.com/cs/database/sqldawithoutsqlcb.asp

Authentication and Authorization in ASP.NET
Authentication is the process of identification and validation of a user's credentials. After the identity is authenticated, a process called authorization determines whether that identity has access to a particular resource. This article discusses both these concepts in detail.

ref: http://aspalliance.com/907

Bubbled Event
ref: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconbubblingcommandevent.asp

ref: http://aspnet.4guysfromrolla.com/articles/051105-1.aspx

How to use the Validator
ref: http://aspnet.4guysfromrolla.com/articles/073102-1.aspx

How to upload Large File



In the Machine.config file, change the maxRequestLength attribute of the <httpruntime>configuration section to a larger value. This change affects the whole computer.

In the Web.config file, override the value of maxRequestLength for the application. For example, the following entry in Web.config allows files that are less than or equal to 8 megabytes (MB) to be uploaded:<httpruntime maxrequestlength="8192">


ref:http://support.microsoft.com/kb/295626/

0 comments: