home / developersection / tag
Introduction:Static Methods are methods that can be accessed without creating instances of the class. Static methods supply the easy way to call the m
example:- i have index page(html file) using for long shots, 6224p (progressive frame rate), 1835mm blow up, 8635mm film format, 17 now want to rea
In this blog I not tell you “What is generic class in C#?” you can read about generic from below link. Here I tell you “Why Generic in C# !”. First see below code:
We use “Using” keyword as directive in c#. “Using” keyword can be used for importing namespace to your classes. Example:Using System; Using Sy
ExecuteNonQuery Method:This method is commonly used for update, insert and delete statements, where the only returned value is the number of record af
A ProgressBar control is used to represent the progress of a lengthy operation that takes time where a user has to wait for the operation to be finished. Here I used ProcessBar Dynamically.
Abstraction is used to create a common set of methods that might have different specific implementations by subclasses. Abstract class cannot be instantiated and consists of abstract methods without any implementations.
Often we have looking for generating random number or random string for some requirement such as captcha validation, sending password in email etc. He
DataTable dt = new DataTable(;); DataColumn dcID = new DataColumn("ID", typeof(int)); dcID.AutoIncrement = true; dcID.AutoIncrementSeed = 1; dcID.AutoIncrementStep = 1;
When a form is submitted in classic ASP, all form values are cleared. Suppose you have submitted a form with a lot of information and the server comes back with an error. You will have to go back to the form and correct the information.