hi ,
i am trying to develop one jsp application with tag concept on netbeans tool.
but i am getting this error "According to TLD or tagfile, Attribute uri is mandatory for tag dbquery " . i could not run my application due to this error.
In Jsp file i wrote this code
<%@taglib uri="dbqueryuri" prefix="db"%>
<db:dbquery driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/employee?" user="root" pass="mysql" query='<%=request.getParameter("sql")%>'/>
In TLD file, i got this code
<taglib version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd">
<tlib-version>1.0</tlib-version>
<short-name>dbquery</short-name>
<uri>/WEB-INF/dbquery</uri>
if there is any solution , please help me....