Instant Viewer is software which allow user to open and documents of different format over single window. With this you could browse list of documents...
This software provide calculator to Brokers to manage their daily money transaction against different Parties and other Brokers. This product by default calculate money interest...
Their are 3 Methods for developing multi-language websites: 1. Replication2. Generalized approach3. Using Concept of Localization and Globalization Replization: This is basic approach used in...
ASP.NET Security Lecture 1 Authentication: Checks user identityAuthorization: Check Permissions 4 type of security:1. Windows Authentication2. Forms Authentication: Can be customized3. Passport Authentication4. NoneWeb.config For more...
Their are many approaches to get alternate record from SQL server database table. Here i have discussed 2 approaches1. Complex Query2. Using Views Complex Query: SELECT...
Without DataSelect * INTO tbem1 from tbemp where 1=2 Why 1=2?Because none of the record could satisfy this condition i.e. 1=2. So no data would...
Get duplicate records from tableSelect ename from tbemp a where a.eno!=(select Max(eno) from tbemp b where a.ename=b.ename) Here eno denotes to employee number and ename...
Union is to select all records from two table but common record only once. Select * from tbemp1UNIONSelect * from tbemp2 Inersect is to select common records...
Read complete article
Read html, text or content between HTML tag c#. .NET It is very easy to read content between HTML tag using c#. Steps for reading...