Filter Numbers and Text/Non-Numbers in Excel List

  Formulas:   =IF(ISNUMBER(A1),A1,””) =IF(ISTEXT(A1),A1,””)   Sample Data Set: Sample Data List IsNumber? IsText? Test1   Test1 5884578457 5884578457   Text1   Text1 54545046 54545046   String1   String1 656893450 656893450   String1   String1 5.64768E+13 56476804932048       Sample data Excel Sheet: Excel-Filter-IsNumber-or-IsText.xlsx

Read more

Role of Application Pools in IIS Web Server

Application Pool is the concept to isolate websites hosted on a IIS server by dedicating an IIS worker process for each pool.  An application pool can be used by one or more websites on a IIS server. Every application within an application pool shares the same worker process. Because each worker process operates as a separate instance of the worker process executable, W3wp.exe, the worker process that services one application pool is separated from the worker process that services another. Each separate worker process provides a process boundary so that when an application is assigned to one application pool, problems […]

Read more

How Application Pools Work (IIS 6.0)

When you run IIS 6.0 in worker process isolation mode, you can separate different Web applications and Web sites into groups known as application pools. An application pool is a group of one or more URLs that are served by a worker process or set of worker processes. Any Web directory or virtual directory can be assigned to an application pool. Every application within an application pool shares the same worker process. Because each worker process operates as a separate instance of the worker process executable, W3wp.exe, the worker process that services one application pool is separated from the worker […]

Read more