Home - Advertise - About KYNOU -  - Tutorial Index - Newest Tutorials - Chat Room - Advanced Search
Skip Navigation Links.
Tutorial TitleTutorial Description 
Character EncodingIn this tutorial, you will learn the different classes and methods from the System.Text namespace that you can use to encode or decode characters.Select
CollectionBase and DictionaryBase classesIn this tutorial, you will learn how to create a class that derives from the CollectionBase class and another class that derives from the DictionaryBase class. The first one allows you to create strongly typed lists and the second one allows you to createSelect
Creating and using Custom AttributesIn this tutorial, you will learn how to create custom attributes that can be applied to a class or methods of a class.Select
Creating an Upload File Web FormIn this tutorial, you will learn how to convert the INPUT TYPE=FILE tag to the HtmlInputFile server control and use its properties and methods to upload files to the server.Select
Converting string to DateTimeIn this tutorial you will learn two methods of the DateTime object that will allow you to convert string to date and time. The name of these methods are Parse() and ParseExact();Select
Dynamically generate image using Graphics.DrawStriIn this tutorial, you will learn how to load an image file into a Graphics object, draw a string on top of it and output it to the browser dynamically.Select
Using preprocessor directives/ConditionalAttributeThis tutorial teaches you how to use preprocessor directives or the ConditionalAttribute to determine that just some part of the code should be executed.Select
Binary and SOAP SerializationIn this tutorial, you will learn how to serialize and deserialize objects marked with the [Serializable] attribute by using two formatters: Binary and SOAP.Select
State ManagementIn this tutorial, you will learn how to store variables on the client and server sides. On the client side, using ViewState and Cookies; on the server side, using Session and Applications variables.Select
Validating, Serializing, Deserializing and TransfoIn this tutorial, you will learn how to validate an XML file against a Schema file (XSD). You will also learn how to serialize and deserialize a type to and from XML and finally you will see how to transform an XML file to another document (in our exampleSelect
ASP.NET Security: WindowsIdentity and FormsAuthentIn this tutorial, you will learn how to obtain security information about the current authenticated user by using the WindowsIdentity object. You will also learn how to provide login feature for your website through Forms Authentication.Select
Working with the Cache objectIn this tutorial, you will learn how to store data in the Cache. You will use the Cache object in two ways. In the first way, you will set the AbsoluteExpiration parameter to never expire and the SlidingExpiration to an interval of 10 seconds. In the secoSelect
Working with JavaScriptIn this tutorial, you will learn how to use the RegisterClientScriptBlock and RegisterStartupScript methods of the Page class. Also, you will learn how to set the onclick JavaScript event to a button using its Attributes.Add method.Select
Working with FramesThis tutorial demonstrates how to dynamically change the content of different IFRAMEs on the web form using server-side code in combination with client-side code.Select
Ajax First ExampleThis tutorial will show you how to pass and receive data between the server and the client using Ajax.Select
Reading CheckBoxes in a DataGridThis tutorial will teach you how to read properties of checkboxes inside of a DataGrid. For instance, you can use this technique to delete all selected checkboxes in the datagrid.Select
DataList ControlIn this tutorial, you will learn how to setup and use a DataList control. You will make it show multiple records at the same time and you will use it to also edit and update the records.Select
Changing CSS Style at runtimeIn this tutorial, you will learn how to change CSS attributes of an ASP.NET control at runtime. In this particular example, you will toggle between percentage and pixel the left and top position attributes.Select
ATLAS home page's buttons: Can't save imagesIn this tutorial you will learn how to create buttons like the ATLAS home page's navigation buttons. As you probably already noticed, you cannot right-click on these buttons and save their images. You will learn how to do this.Select
Binding XML to DataGridIn this tutorial you will learn how to create an XML file and a related XML schema in VS.NET and bind the XML to a DataGrid.Select