<!--#include file="Conn.asp"--><%Checklogin()%>
<%
originaltag=Request.QueryString("originaltag")
newtag=Request.QueryString("newtag")
originaltag=TextEncode(unescape(originaltag))
newtag=TextEncode(unescape(newtag))

sqlstr="update tagTable set tagName='"&newtag&"' where tagName='"&originaltag&"' and employeeId="&Session("employee_id")
conn.execute(sqlstr)
conn.close
Set conn=Nothing
%>