Do anyone knows about the class which has the common function which we generally use while developing web application. I have no idea what you may call it, it may be the utility class or common function class. Just for reference, this class can have some common function like:
- Generate Random number
- Get the file path
- Get the concatinated string
- To check the string null or empty
- Find controls
The idea is to have the collection of function which we generally use while developing asp.net application.
No idea what you are really asking, but there already are ready-made methods for the tasks you write in various library classes:
Random.Next()
orRNGCryptoServiceProvider.GetBytes()
Path.GetDirectoryName()
String.Concat()
or simplyx + y
String.IsNullOrEmpty()
Control.FindControl()