config implicit Object in jsp

Config Implicit Object introduction-: config is an object of type javax.servlet.ServletConfig. This object is created by Container on every JSP page. This is used to derive the initialization parameter from web.xml. The config object is used to get this configuration information from JSP Page, servlet name, configuration parameters and servlet context. Methods of Config Implicit… Read More »

out implicit Object in jsp

Out Implicit object -:This is an instance of javax.servlet.jsp.JspWriter object. This object is used to send some data on response.Through this object, some data is written to the buffer and it is sent to the response. Methods of Out Implicit Object -: There are some methods of using out implicit object void print () void… Read More »

response implicit Object in jsp

Introduction –: we know that the implicit object are automatic created. In the last post we learn about request implicit object in jsp. Now we learn about response implicit object. response object is an instance of javax.servlet.http.HttpServletResponse object. On every request, the response object is created by the JSP Engine.The response object is used to… Read More »

implicit objects in jsp

Definition of implicit objects in jsp –: These implicit objects are automatically created by the container during JSP page translation. implicit objects can be used directly on the JSP page. These are created by the container automatically so it can be accessed using objects. Types of implicit object in jsp-We know that these are automatically… Read More »

Directives in jsp

Introduction of Directives -: In the JSP language directive play a very important role. It Gives directions and instructions to the JSP container.Directives have a number of attributes which we can list down as key-value pairs and separated by commas.There are the syntax of directives <%@ directive attribute=”value” attribute=”value” ….%> There are three type directives… Read More »

Java server Pages Tags

JSP Tags -: This is called the scripting tags.The scripting elements provide the facility to insert code into JSP. There are many type Java Server Pages tags available these are the Declaration Tags Expression Tags JSP Scriptlet Tag JSP Comment tags Declaration Tags-: In this declare variables, methods and classes in the declaration tag of… Read More »

life cycle of jsp

Life Cycle of JSP-: In the website normal web-pages execute on the browser quite easily but web-pages with .jsp extension are executed on the browser after a lot of processes.This life cycle processes until the destroy the file from the creation of the .jsp file.The process of JSP Life Cycle are divided in the following… Read More »

What is java server pages

Introduction of Java Server Pages-: JSP (java server pages) is a server-side programming language. JSP language is used to create dynamic web pages or applications. JSP language is a combination of Java, HTML and XML.Java Server Pages language is similar to PHP and ASP language. But java server pages language uses Java quite a lot.… Read More »

Unity Scripting

Introduction -: We will learn some basic programming concept. “Scripting ” in unity is the programming side of game development .Unity primarily uses the c# language. Java script is also available but is less common. C# is very similar to java or another programming language. For using the scripting in unity it is necessary to… Read More »

how to create and manage ads.txt file

Introduction of Ads.txt File -: This file was created in notepad. ads is the file name and .txt is the extension of notepad file. Ads.txt file allows his publishers to sell ads on their website It is an initiative created by IAB Tech Lab for a non-profit focused on improving digital advertising standards. Ads.txt file… Read More »