Top 1 to 50 Scripting Techniques - ASP.NET scripts at Programsdb.com

Scripts are listed afer popularity.       To display the scripts after name please click here



1)   Here is a basic Queue implementation in C#
This is an easy to learn tutorial which is much useful for the novice programmers to perform queue operation in C#. The author shows you the output to the sample program which helps you to understand about the queue.

2)   Usage of Operator Overloading in C#
This simple tutorial teaches you about an object oriented concept called as operator overloading in C#. The sample program given in this tutorial helps you to understand the use of operator overloading.

3)   VB.NET or C#?
This is a tutorial in which the author compares Visual Basic.NET and C#. In C# you can write multiple comments without repeating the comment character as well as you can use unsigned data type in .NET runtime but not in VB.NET. You can re-allocate arrays using 'Redim' in VB.NET but not in C#.

4)   Indexers in C#
This is an easy to learn tutorial for the programmers to know about the indexers in C#. The sample code given in this tutorial is easily understandable by the novice programmers.

5)   Serializing Objects using C#
This is a tutorial through which you can know about how to serialize and deserialize the objects with the help of the methods such as SerializeNow() and DeSerializeNow() of the SerializeTest class. The author shows you two namespaces that must be imported inorder to use the SerializeTest class.

6)   Invoking JavaScript From a Server Side Button
It is a web based tutorial which helps web programmers to know about invoking a java script function of the aspx page with the help of a server side button. The author explains it with a sample program.

7)   Using Params Keyword
In this tutorial the author discusses about the param keyword in C#. The param keyword is used to pass single dimension array as an argument to a function. The sample program given in this tutorial clearly shows how to access the arguments that are passed using the param keyword.


8)   Optional Parameters in C#
This simple tutorial is much helpful for the programmers. In this tutorial the author provides you the solution for adding optional parameters in the functions of C# language.

9)   BitWise Operations in C#
This web based tutorial guides you details in knowing about bitwise manipulations in C#. This tutorial explains you the C# bitwise operators with its truth table and an example code.

10)   Understanding Include Statements
This is a tutorial which helps you to know about the include files. Include directive is used to add a file to the ASP.NET page. You have to specify the file name with its path in the include statement.

11)   Hello World - Console Application
This is an easy to learn tutorial for the beginners to know how to print" Hello World" output on the screen using the WriteLine method in C#.

12)   Implementing a Genetic Algorithm in C# and .NET
In this article the author explains you about how to implement genetic algorithm using C# coding. The author shows the seven steps of the genetic algorithm in this article. You can download the sample source code from this article.

13)   C# Programming Language Future Features
In this tutorial the author discusses about the four new features of the C# language. This tutorial shows you how to define generics, iterators, anonymous methods and partial types and also tells you the advantages of these new features.

14)   Learn C#: C# Language's Preprocessor Directives
This is an useful tutorial through which programmers can learn about the use of various preprocessor directives of C#. The author explains you the use of various preprocessor directives of C# with samples.

15)   Text Reader and Text Writer in C#
This simple tutorial gives you the solution for reading and writing (Unicode) character based data through the derived classes of TextReader and TextWriter class. The text information is treated as textual information as a stream of in-memory characters by these classes.


16)   How To Dynamically Include Files in ASP.NET
This is a web based article through which you can learn about how to dynamically include HTML and client-side scripts in .aspx pages. You can see the sample code to perform this operation in this article.

17)   Using Enums in C#
This is an user friendly tutoiral which contains information about the enum types in C#. Enums provide you an easy way to control the values and you can easily implement it on your c# programs. The author explains the procedure with a sample program.

18)   What's New in JScript .NET?
This is a web based tutorial in which the author lists you the new statements, data types, directives that are introduced in JScript.NET. The author also shows how to use these new features with a sample code to the users.

19)   C# Intermediate Language Disassembler(ILDASM)
It is an article through which you can gain more knowledge about the Intermediate Language Disassembler tool of .NET. This tool shows not only namespace but also types including their interfaces. This article also explains about some of the basic instructions.

20)   Introducing the .NET Framework and JScript .NET
In this tutorial the author gives you a brief explanation about the four components of the .NET architecture. You can also get information about the JScript.NET language which is purely an object oriented language.

21)   Technotes, HowTo Series C# Coding Style Guide
This tutorial helps you to write programs in C#. The author shows you various rules that must be followed when using commets, whitespaces, declaring and initializing variables in C# program. This tutorial also shows you a sample C# program.

22)   Control Statements
This is an easy to learn tutorial in which the author shows you the sample code for various control statements and conditional statements in C# which helps novice programmers to understand it clearly.

23)   Moving to VB.Net
Moving to VB.Net is a tutorial which shows you the changes that exist in VB.NET. Some new features that are introduced in VB.NET are Option Strict statement, shorthand syntax operators, System.Object type instead of variant etc.,

24)   Using Genetic Algorithms to Design Logic Circuits in C#
This is an useful tutorial which helps you to design logic circuits in C#. The author gives you the sample code which helps you to calculate Fitness of Genetic Logic Circuit. you can also see various sample screen which helps you to understand the task.

25)   Attributed Programming in .NET using C#
This tutorial helps .NET programmers to learn about a powerful feature know as attribute of .NET languages. In this tutorial the author defines attribute as a class which allows parameters in their specifications. Enum, interface, delegates, events, methods are the targets of attributes.

26)   Object-Oriented ASP.NET - Introduction
This web based article deals with the information regarding the object oriented support of ASP.NET. The author shows how you can customize a datagrid by encapsulating some behavior in a subclass of the datagrid, and thereby making the derived DataGrid class re-usable across multiple form.

27)   A Practical Comparison of XSLT and ASP.NET
In this article the author compares both ASP.NET and XSLT. The ASP.NET is available with many debugging tools and it has the capability of doing custom performance tweaking at every step which results in perf win. The XSLT can easily handle embedded HTML coding and it is declartive.

28)   C# Class Wrapping
This is a tutoiral through which you can know how to define a function with the same name in more than one class. The author explains this operation with a sample program.

29)   Exception Management Application Block for .NET
In this article the author clearly tells you about the use of exception management application block in .NET. You can also know how to download, install and configure this block with the help of this tutorial.

30)   The Quick and Dirty .NET Guide to C#/VB Object-Oriented Programming
This tutorial is more informative to the non object oriented programmers to gain more information about the various object oriented features of C# and VB.NET. The author clearly shows how to create an instance for a class as well as explains various access specifiers of the class.

31)   Conversational C# for Java Programmers, Part 1
This simple tutorial shows you the difference between Java and C#. In this tutorial the author compares the naming conventions, exception handling, creating instance for a class, handling packages and namespaces etc., in c# and Java.

32)   Testing a Full-Text Search Stemmer in C#
This is an article through which you can get the solution for testing the stemmer component. The author offers you the complete sample source code to perform this operation.

33)   Comparing C# and Java
Comparing C# and Java is an article in which the author compares the features of C# with java and C++. The author compares the data types, loopings statements, constants, object oriented features such as inheritance, encapsulation and polymorphism, interfaces etc.,of C# with java and C++.

34)   Regular Expressions in C#
This simple tutorial is much helpful for the beginners. In this tutorial the author shows you the sample code which helps you to know about how to use regular expression in c# programs.

35)   Weaning Developers from the CommandBuilder
Weaning Developers from the CommandBuilder is an article which helps you to know about the disadvantages of the ADO.NET commmand builder object. The author also discusses about tuning delete and update command.

36)   New JScript .NET Data Types
In this tutorial you can gain more knowledge about the data types of JScript.NET language. The author also explains you how to create an user defined data type, automatic type conversions, data type constraints etc.,

37)   An Introduction to Custom Attributes and Reflection in VB.NET
This is a .NET tutorial through which developers can know an easy way for building custom attributes in Visual Basic.NET. Programmers can specify about the Custom attributes that allow the programmer to specify details about a programming construct with the help of custom attribute.

38)   Syntax and Semantics
Syntax and Semantics is a tutorial in which the author shows you the difference between the ASP and ASP.NET pages. An ASP.NET page supports only a single language whereas an ASP page supports multiple languages. The author explains each of the difference with a sample code.

39)   Why I Chose C#
This simple tutorial helps novice programmers to learn about the C# language. The author discusses about various features of C#. C# coding is easy to read since it uses hard brackets for elements of arrays and parentheses for method parameters.

40)   Leverage VB.NET's Object-Oriented Features
This tutorial is much helpful for the novice programmers to learn about Visual Basic.NET. VB.NET is included in the .NET framework and it supports object oriented concepts and it is platform independent.

41)   Using a transacted VB component (leveraging COM+) from ASP.NET
This is a web based article in which you can get information about using COM components in .NET as well as sample code for to building a simple transacted VB class and use it within an ASP.NET page using VB.

42)   Differences between ASP and ASP .NET
In this web based tutorial you can get the difference between ASP and ASP.NET as well as you can know about the features of ASP.NET. This tutorial discusses about various new features such as compiled code, better user authentication, supports languages such as VB.NET, C# etc.,

43)   A Quick Comparison of ADO and ADO.NET - Part I
In this article the author compares ADO and ADO.NET. The article gives you the sample program for connecting to a database using various clases of ADO and ADO.NET. This article is useful for the .NET programers to know more about ADO.NET.

44)   How to Use VB Component in C#?
This is an useful tutorial for the .NET beginners. In this tutorial the author gives you the sample code that creates a dll file in vb and include that file in C# which displays the 'Hello world' output on the browser.

45)   Understanding New JScript .NET Statements
This is an easy to learn tutorial through which you can know about the use of various new statements of JScript.NET language. The author clearly explains the import, package etc with a sample code. Novice programmers can benefit by this tutorial.

46)   A Practical Comparison of ADO and ADO.NET - Part II
It is an article which discusses about working with recordset and rowset of the ADO and ADO.NET. The recordset contains the result of the SQL query and you can loop through the results with the help of the movenext method. The OleDbDataReader and SqlDataReader classes of ADO.NET has rowsets.

47)   Developing ASP+ Pages Using JScript.NET
This is an easy to learn ASAP.NET tutorial through which you can learn about the 3 new features of JScript.NET. The author shows you the sample code for building aspx page with the help of JScript.NET.

48)   Introduction to JavaScript and DHTML
Introduction to JavaScript and DHTML is an article which explains you about the features of JavaScript and DHTML. JavaScript is a powerful scripting language through which you can perform validation in form objects. DHTML provides you an easy and clear control over a page's style and layout.

49)   Contrasting C# and Java Syntax
This is an useful tutorial for the developers to know the difference between the syntax of C# and Java program. You can see the differece in defining class, struct, properties, access Modifiers etc., of both C# and java.

50)   Comparing Performance - ASP 2.0 vs .Net - Updated
This is an ASP.NET article in which the author compares the coding of both beta 1 version and the final version of the ASP.NET. The author also shows you the sample coding for both version with outputs.



Browse Pages:    |< 1 [2]     >>     >|  
    Home
    Top Downloads
    New Programs
    Awards
    Link to us
    Submit
    Contact us

 

Scripts Categories

 



Game Cheats

Updated: Friday, 5 September 2008

Privacy Policy