How to open multiple tabs in firefox using a batch file

We can open multiple tabs in same window using the following batch file. Step 1: Create a batch file Step 2: Copy the following in the file and save it “C:\Program Files\Mozilla Firefox\firefox.exe” -url “www.google.com” “www.yahoo.com” Step 3: Run the file

Tagged , Leave a comment

How to call Jsp page from Javascript?

We can call JSP page from JavaScript using the property window.location.href. Example: Hello.html: <html> <head> <title>Add Faulty Phones</title> <script type=”text/javascript”> function changeLocation() { window.location.href =’hello.jsp?name=John’; } </script> </head> <body> <form method=get> <INPUT TYPE=BUTTON ONCLICK=”changeLocation()” VALUE=”Click”> </form> </html> Note: “window.location.href = ‘download.jsp’?name=john;” where download.jsp is jsp file, name is parameter name and john is parameter value. hello.jsp: <center>Hello <%=requset.getParameter(“name”)%> </center>

Tagged , , Leave a comment

Oracle – Frequently Asked Questions

1. What is ORACLE? Oracle is a Relational Database Management System (RDBMS) which is used widely for business applications. 2. What is SGA? The System Global Area (SGA) is a shared memory region allocated by ORACLE that contains data and control information for one ORACLE instance. 3. What is the function of Checkpoint (CKPT)? The Checkpoint (CKPT) process is responsible for signaling DBWR at checkpoints and updating all the data files and control files of the database. The CKPT is also useful to get the point in time from where to begin the recovery in … More ->

Tagged , , , , , , , , , , , , , , , , , , , Leave a comment

.NET Frequently Asked Questions

1. What is meant by the .NET framework? The Microsoft .NET Framework is a standards-based, language independent application development and execution environment. It consists of a runtime environment called the CLR (common language runtime) and a set of libraries called .NET Class Libraries to enhance programmers’ efficiency and productivity. 2. What are the different types of JIT compilers? JIT compiler is a part of .NET runtime execution environment. There are three types of JIT compilers, pre-JIT, Econo-JIT and Normal-JIT. 3. … More ->

Tagged , , , , , , , , , , , , , , , , , , , Leave a comment

WebSphere 3.5 Frequently Asked Questions

Table of Contents: How do I install WebSphere Application Server when logged on to a Windows NT domain? While starting WS Admin Server from control panel, the error comes which says “Service Code 10 error, unable to start the service”. What is it and how to solve it? For Developing Beans and Servlets what changes should I make in my System Classpath? While Deploying a bean, WebSphere provide 2 options “Deploy only” and “Deploy and Workload Manage”. What are these … More ->

Tagged , , , , , , , , , , , , , , Leave a comment