C# Windows Validation by ErrorProvider In ASP.Net 2.0 we use different Validation controls from Toolbox for validations (Just Drag & Drop, No need of writing code in C#). But in Case of C# windows application this feature is not available so we use Error Provider control to do any type of validation. [...]
Posts Tagged ‘C#’
C# windows validation by ErrorProvider Control
Posted in C#, C# Windows, Dot Net, tagged C#, ErrorProvider, Validation, windows on May 16, 2008 | 14 Comments »
ASP.Net and C# Create HTML Controls Dynamically
Posted in ASP.Net, C#, Dot Net, HTML, tagged ASP.Net, C#, control, dynamic, HTML on May 14, 2008 | 11 Comments »
ASP.Net & C# Create HTML Controls Dynamically It is very easy to create HTML controls before running a Web Page. Just Drag and Drop from ToolBox or write HTML code or ASP code for that Web Page (.aspx). But people think that generating HTML controls during runtime is difficult. But it’s quite easy. There [...]
ASP.Net and C# Login Page
Posted in ASP.Net, C#, Dot Net, tagged ASP.Net, C#, Login on May 13, 2008 | 121 Comments »
ASP.Net & C# Login Page Whenever we want to start any project the first thing we think about the User Roles and Login. Generally there will be mainly two User Roles a) Administrator User b) Client User In VS 2005 its very simple to design a Login Page. Because there is no need [...]
ASP.Net C# and Javascript Count Down Timer
Posted in ASP.Net, C#, Dot Net, JavaScript, tagged ASP.Net, C#, Count, Down, JavaScript, Timer on May 12, 2008 | 39 Comments »
ASP.Net, C# and Javascript Count Down Timer ASP.Net Code While displaying a count down timer on your Web Page you need to do following things : On the web page you need to add 7 controls. In that one is HTML Text box which displays the count down time <input type=”text” readonly =”true” size=”8″ id=”counter” style=”text-align:center; [...]