<DIV>Sir,</DIV>
<DIV>&nbsp;</DIV>
<DIV>i'm developing dynamic website for our university. i have small editor for update the data's through website. it's working fine but when i try to using format like as bold, italic ... while give permision denied error in status bar but that data successfuly stored in database. in same time when i insert image, the same error occur and image is not store in specified folder.</DIV>
<DIV>&nbsp;</DIV>
<DIV>i give's permision(IUSR_&lt;servername&gt;, IWAM_&lt;servername&gt;, Guest and&nbsp;all&nbsp;system users with FULL Control and SCRRUN.DLL file also)&nbsp;for my relative and absolute folder.</DIV>
<DIV>&nbsp;</DIV>
<DIV>but same error occur.&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>this is a my code</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;!--#include file="../library/include/source.asp"--&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&lt;%if(session("user")&lt;&gt;"")then</DIV>
<DIV>Set fileobject = Server.CreateObject("Scripting.FileSystemObject")<BR>set scriptobject=server.CreateObject("scripting.filesystemobject")<BR>set scriptobject1=server.CreateObject("scripting.filesystemobject")</DIV>
<DIV>&nbsp;</DIV>
<DIV>set rs_temp=server.CreateObject("adodb.recordset")<BR>set rs_tempbot=server.CreateObject("adodb.recordset")</DIV>
<DIV>&nbsp;</DIV>
<DIV>fld_nm="/Common"<BR>createfolder(fld_nm)<BR>fld_nm="/Common\Images"<BR>createfolder(fld_nm)<BR>img_ref_fldnm="/Common\Temp"</DIV>
<DIV>&nbsp;</DIV>
<DIV>'lkcode=1----------About university<BR>'lkcode=2----------Trust<BR>'lkcode=3----------Exam&amp;Result<BR>'lkcode=4----------Online<BR>'lkcode=5----------Webmail<BR>&nbsp;&nbsp;<BR>if request.QueryString("lkcode")=1 then<BR>&nbsp;ph_ref="About"<BR>&nbsp;Com=1<BR>&nbsp;val="About VMRF - Deemed University "<BR></DIV>
<DIV>elseif request.QueryString("lkcode")=2 then<BR>&nbsp;ph_ref="Trust"<BR>&nbsp;Com=2<BR>&nbsp;val="About Trust"<BR></DIV>
<DIV>elseif request.QueryString("lkcode")=3 then<BR>&nbsp;ph_ref="Exams"<BR>&nbsp;Com=11<BR>&nbsp;val="Examinations And Results"<BR>elseif request.QueryString("lkcode")=4 then<BR>&nbsp;ph_ref="Online"<BR>&nbsp;Com=14<BR>&nbsp;val="Online Programs"<BR></DIV>
<DIV>elseif request.QueryString("lkcode")=5 then<BR>&nbsp;ph_ref="Webmail"<BR>&nbsp;Com=15<BR>&nbsp;val="WEBMAIL"<BR>end if</DIV>
<DIV>&nbsp;</DIV>
<DIV>if request.QueryString("fw")="ls" then<BR>&nbsp;rs_temp.open "select * from cont_type where lk_code_in="&amp;request.QueryString("lkcode"),con,2,2<BR>&nbsp;if rs_temp.eof then<BR>&nbsp;&nbsp;response.Redirect("un_com_det.asp?fw=nw&amp;Com="&amp;Com&amp;"&amp;lkcode="&amp;request.QueryString("lkcode"))<BR>&nbsp;end if<BR></DIV>
<DIV>elseif request.QueryString("fw")="sv" then<BR>&nbsp;rs_temp.Open "select max(t1_code_in) from cont_type",con,2,2<BR>&nbsp;if rs_temp.Fields (0)&gt;0 then<BR>&nbsp;&nbsp;inc=rs_temp.Fields(0)+1<BR>&nbsp;else<BR>&nbsp;&nbsp;inc=1<BR>&nbsp;end if<BR>&nbsp;rs_temp.Close<BR>&nbsp;<BR>&nbsp;ref_ref=0&nbsp;&nbsp;'this is for increment var for image count. like ..0,1,2,3,4,..etc.</DIV>
<DIV>&nbsp;quizpath=""<BR>&nbsp;if(not Request.Cookies("ref")="")then<BR>&nbsp;&nbsp;'set scriptobject=server.CreateObject("scripting.filesystemobject")<BR>&nbsp;&nbsp;if scriptobject.FolderExists (server.MapPath (img_ref_fldnm)) then<BR>&nbsp;&nbsp;&nbsp;set img_det=ScriptObject.GetFolder(server.MapPath(img_ref_fldnm))<BR>&nbsp;&nbsp;&nbsp;for each img_name in img_det.files<BR>&nbsp;&nbsp;&nbsp;&nbsp;final_val=split(img_name,"\")<BR>&nbsp;&nbsp;&nbsp;&nbsp;value=split(final_val(ubound(final_val)),".")<BR>&nbsp;&nbsp;&nbsp;&nbsp;val_ref=split(value(ubound(value)-1),"_")<BR>&nbsp;&nbsp;&nbsp;&nbsp;img_value_ref=""<BR>&nbsp;&nbsp;&nbsp;&nbsp;for idx_idx=0 to ubound(val_ref)-1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if img_value_ref="" then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;img_value_ref=val_ref(idx_idx)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;img_value_ref=img_value_ref&amp;"_"&amp;val_ref(idx_idx)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end
 if<BR>&nbsp;&nbsp;&nbsp;&nbsp;next<BR>&nbsp;&nbsp;&nbsp;&nbsp;if img_value_ref=ph_ref&amp;"_"&amp;trim(Request.Cookies("ref")) then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scriptobject.CopyFile server.MapPath(img_ref_fldnm&amp;"\"&amp;final_val(ubound(final_val))),server.MapPath(fld_nm&amp;"\"&amp;final_val(ubound(final_val)))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scriptobject.DeleteFile server.MapPath(img_ref_fldnm&amp;"\"&amp;final_val(ubound(final_val)))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;next<BR>&nbsp;&nbsp;end if<BR>&nbsp;end if<BR>&nbsp;Response.Cookies("ref")="" <BR>&nbsp;<BR>&nbsp;rs_temp.open "select * from
 cont_type",con,2,2<BR>&nbsp;rs_temp.addnew<BR>&nbsp;&nbsp;rs_temp.fields("t1_code_in")=inc<BR>&nbsp;&nbsp;rs_temp.fields("lk_code_in")=request.QueryString("lkcode")<BR>&nbsp;&nbsp;'rs_temp.fields("t1_desc_nt")=getText(Request.Form("Description1"),Request.Form("images"),inc,ph_ref,fld_nm)<BR>&nbsp;&nbsp;rs_temp.fields("t1_desc_nt")=Request.Form("Description")<BR>&nbsp;&nbsp;rs_temp.fields("t1_date_vc")=cstr(date)<BR>&nbsp;rs_temp.update<BR>&nbsp;response.Redirect("un_com_det.asp?fw=ls&amp;sv=ok&amp;Com="&amp;Com&amp;"&amp;name="&amp;request.Form("title_rcp")&amp;"&amp;lkcode="&amp;request.QueryString("lkcode"))<BR>elseif request.QueryString("fw")="edsv" then<BR>&nbsp;if not Request.Form("images")="" then<BR>&nbsp;&nbsp;img=split(Request.Form("images"),",")<BR>&nbsp;&nbsp;for idx=0 to ubound(img)<BR>&nbsp;&nbsp;&nbsp;img_ref=split(img(idx),"/")<BR>&nbsp;&nbsp;&nbsp;allow=false<BR>&nbsp;&nbsp;&nbsp;value=""<BR>&nbsp;&nbsp;&nbsp;for idx1=0 to
 ubound(img_ref)-1<BR>&nbsp;&nbsp;&nbsp;&nbsp;if allow=true then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if value="" then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value=img_ref(idx1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value=value&amp;"/"&amp;img_ref(idx1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;&nbsp;Response.Write(value)<BR>&nbsp;&nbsp;&nbsp;&nbsp;if Request.ServerVariables("HTTP_HOST")=img_ref(idx1) then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;allow=true<BR>&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;next<BR>&nbsp;&nbsp;&nbsp;if allow=true then<BR>&nbsp;&nbsp;&nbsp;&nbsp;value=value&amp;"/"&amp;ph_ref&amp;"_"&amp;Request.QueryString ("edcode")&amp;"_"&amp;img_ref(ubound(img_ref))<BR>&nbsp;&nbsp;&nbsp;&nbsp;if ScriptObject.FileExists (server.MapPath (value)) then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scriptobject.CopyFile
 server.MapPath(value),server.MapPath(fld_nm&amp;"/"&amp;ph_ref&amp;"_"&amp;Request.QueryString ("edcode")&amp;"_"&amp;img_ref(ubound(img_ref)))<BR>&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;next<BR>&nbsp;end if<BR>&nbsp;<BR>&nbsp;if(not Request.Cookies("ref")="")then<BR>&nbsp;&nbsp;if scriptobject.FolderExists (server.MapPath (img_ref_fldnm)) then<BR>&nbsp;&nbsp;&nbsp;set img_det=ScriptObject.GetFolder(server.MapPath(img_ref_fldnm))<BR>&nbsp;&nbsp;&nbsp;for each img_name in img_det.files<BR>&nbsp;&nbsp;&nbsp;&nbsp;img_ref=split(img_name,"\")<BR>&nbsp;&nbsp;&nbsp;&nbsp;if ScriptObject.FileExists (server.MapPath (img_ref_fldnm&amp;"\"&amp;img_ref(ubound(img_ref)))) then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if scriptobject.FolderExists (server.MapPath (fld_nm)) then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set img_det1=ScriptObject1.GetFolder(server.MapPath(fld_nm))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for each img_name1 in
 img_det1.files<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;img_ref1=split(img_name1,"\")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;img_ext=split(img_ref1(ubound(img_ref1)),".")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;img_snd=split(mid(img_ref(ubound(img_ref)),instr(1,img_ref(ubound(img_ref)),"_")+1),".")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if cstr(img_ext(ubound(img_ext)-1))=cstr(img_snd(ubound(img_snd)-1)) then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scriptobject1.DeleteFile server.MapPath(fld_nm&amp;"\"&amp;img_ref1(ubound(img_ref1)))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;next<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scriptobject.CopyFile server.MapPath(img_ref_fldnm&amp;"\"&amp;img_ref(ubound(img_ref))),server.MapPath(fld_nm&amp;"\"&amp;img_ref(ubound(img_ref)))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scriptobject.DeleteFile
 server.MapPath(img_ref_fldnm&amp;"\"&amp;img_ref(ubound(img_ref)))<BR>&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;next<BR>&nbsp;&nbsp;end if<BR>&nbsp;end if<BR>&nbsp;<BR>&nbsp;set scriptobject1=nothing<BR>&nbsp;Response.Cookies("ref")="" <BR>&nbsp;<BR>&nbsp;rs_temp.open "select * from cont_type where lk_code_in="&amp;request.QueryString("lkcode"),con,2,2<BR>&nbsp;&nbsp;rs_temp.fields("t1_desc_nt")=getText(request.Form("Description"),Request.Form("images"),Request.QueryString("edcode"),ph_ref,fld_nm)<BR>&nbsp;&nbsp;rs_temp.fields("t1_mdate_vc")=cstr(date)<BR>&nbsp;rs_temp.update<BR>&nbsp;response.Redirect("un_com_det.asp?fw=ls&amp;Com="&amp;Com&amp;"&amp;sv=up&amp;name="&amp;request.Form("title_rcp")&amp;"&amp;lkcode="&amp;request.QueryString("lkcode"))<BR>elseif request.QueryString("fw")="dl" then<BR>&nbsp;set img_det=ScriptObject.GetFolder(server.MapPath(fld_nm))<BR>&nbsp;for each img_name in
 img_det.files<BR>&nbsp;&nbsp;final_val=split(img_name,"\")<BR>&nbsp;&nbsp;value=split(final_val(ubound(final_val)),".")<BR>&nbsp;&nbsp;val_ref=split(value(ubound(value)-1),"_")<BR>&nbsp;&nbsp;img_value_ref=""<BR>&nbsp;&nbsp;for idx_idx=0 to ubound(val_ref)-1<BR>&nbsp;&nbsp;&nbsp;if img_value_ref="" then<BR>&nbsp;&nbsp;&nbsp;&nbsp;img_value_ref=val_ref(idx_idx)<BR>&nbsp;&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;&nbsp;img_value_ref=img_value_ref&amp;"_"&amp;val_ref(idx_idx)<BR>&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;next<BR>&nbsp;&nbsp;if img_value_ref="ConPhoto_"&amp;trim(Request.QueryString("dlcode")) then<BR>&nbsp;&nbsp;&nbsp;ScriptObject.DeleteFile (server.MapPath (fld_nm&amp;"\"&amp;final_val(ubound(final_val))))<BR>&nbsp;&nbsp;end if<BR>&nbsp;next<BR>&nbsp;con.execute "delete from cont_type where
 lk_code_in="&amp;Request.QueryString("lkcode")<BR>&nbsp;response.Redirect("un_com_det.asp?fw=nw&amp;sv=dok&amp;Com="&amp;Com&amp;"&amp;&amp;name="&amp;name&amp;"&amp;lkcode="&amp;request.QueryString("lkcode"))<BR>&nbsp;set scriptobject=nothing<BR>end if<BR>%&gt;<BR>&lt;html&gt;<BR>&lt;head&gt;<BR>&lt;title&gt;&lt;%=prj_tle%&gt;&amp;&lt;%=mPath%&gt;&lt;/title&gt;<BR>&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;<BR>&lt;link href="/Library/css/mystyle.css" rel="stylesheet" type="text/css"&gt;<BR>&lt;script language="JavaScript" src="/Library/scripts/myscript.js"&gt;&lt;/script&gt;<BR>&lt;script language="JavaScript" src="/Library/scripts/validation.js"&gt;&lt;/script&gt;<BR>&lt;script language="JavaScript" src="/Library/scripts/addMore.js"&gt;&lt;/script&gt;<BR>&lt;script language="JavaScript" src="/Library/scripts/Editor.js"&gt;&lt;/script&gt;</DIV>
<DIV>&lt;script language="JavaScript"&gt;<BR>&lt;!--<BR>scrn_chk()<BR>//--&gt;<BR>&lt;/script&gt;<BR>&lt;script language="JavaScript"&gt;<BR>&lt;!--<BR>function MM_reloadPage(init) {&nbsp; //reloads the window if Nav4 resized<BR>&nbsp; if (init==true) with (navigator) {if ((appName=="Netscape")&amp;&amp;(parseInt(appVersion)==4)) {<BR>&nbsp;&nbsp;&nbsp; document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}<BR>&nbsp; else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();<BR>}<BR>MM_reloadPage(true);<BR>// --&gt;<BR>&lt;/script&gt;</DIV>
<DIV>&lt;script language="javascript"&gt;<BR>function valid()<BR>{<BR>&nbsp;var allow=validation(document.frm);<BR>&nbsp;if (allow==true)<BR>&nbsp;{<BR>&nbsp;&nbsp;if(Description.document.body.innerText=="")<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;alert("Sorry, Without Description sadfsdyou can't process further");<BR>&nbsp;&nbsp;&nbsp;Description1.focus();<BR>&nbsp;&nbsp;&nbsp;return false;<BR>&nbsp;&nbsp;}<BR>&nbsp;&nbsp;else<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;document.frm.Description.value=Description1.document.body.innerHTML;<BR>&nbsp;&nbsp;&nbsp;document.frm.images.value=imgCount(Description1);<BR>&nbsp;&nbsp;}<BR>&nbsp;&nbsp;return true;<BR>&nbsp;}<BR>&nbsp;else<BR>&nbsp;&nbsp;return false;<BR>}<BR>function dl_confirm(file_ref)<BR>{<BR>&nbsp;if(confirm("Are you sure want to delete this Template.\n\nClick Ok to delete the Template.\n\nClick Cancel to drop the process."))<BR>&nbsp;{<BR>&nbsp;&nbsp;window.location=file_ref;<BR>&nbsp;}<BR>}<BR>function
 list(file_ref)<BR>{<BR>&nbsp;window.location.href=file_ref<BR>}<BR>&lt;/script&gt;<BR>&lt;/head&gt;<BR>&lt;%if (Request.QueryString ("fw")="nw") then%&gt;<BR>&nbsp;&lt;body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="Description1.focus();"&gt;<BR>&lt;%elseif (Request.QueryString ("fw")="ed") then%&gt;<BR>&nbsp;&lt;body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="Description1.focus();"&gt;<BR>&lt;%else%&gt;<BR>&nbsp;&lt;body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"&gt;<BR>&lt;%end if%&gt;</DIV>
<DIV>&lt;table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"&gt;<BR>&nbsp; &lt;%if (Request.QueryString ("fw")="ls") then%&gt;<BR>&nbsp;&lt;tr&gt;&lt;td align=left valign="top"&nbsp; class="cont"&gt;&nbsp;<BR>&nbsp;&lt;p class="hding"&gt;&amp;nbsp;&lt;%=val%&gt;&lt;/p&gt;<BR>&nbsp;&lt;fieldset name="nwfieldset" value="" style='margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; border-color: #D2D2D2 #D2D2D2 #D2D2D2 #D2D2D2; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px;width:100%;height:90%;'&gt;<BR>&nbsp;&nbsp;&lt;table border=0 width=100% cellpadding=2 cellspacing=2 height="100%" &gt;<BR>&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign="top"&nbsp; align="center" height="100%"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border=0 width=100% cellpadding=2
 cellspacing=2&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign="top" align="center" class="big" &gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt;&lt;b&gt;&lt;%<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (request.QueryString("sv")="ok") then <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;response.Write("&lt;font color=red&gt;Your Template details saved successfully.&lt;/font&gt;")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;elseif (request.QueryString("sv")="up") then <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;response.Write("&lt;font color=red&gt;Your Template details updated successfully.&lt;/font&gt;")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;elseif (request.QueryString("sv")="dok") then <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;response.Write("&lt;font color=red&gt;Your Template details deleted successfully.&lt;/font&gt;")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end if<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td
 class=big&gt;&lt;%=rs_temp.fields("t1_desc_nt")%&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td class=big&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td class=big&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td class=big align=center&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;%<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ref="un_com_det.asp?fw=dl&amp;Com="&amp;Com&amp;"&amp;&amp;dlcode="&amp;rs_temp(0)&amp;"&amp;lkcode="&amp;request.QueryString("lkcode")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="un_com_det.asp?fw=ed&amp;Com=&lt;%=Com%&gt;&amp;edcode=&lt;%=rs_temp(0)%&gt;&amp;lkcode=&lt;%=request.QueryString("lkcode")%&gt;"&gt;&lt;img border=0 src='/Library\images\edit2.gif' alt='Edit'&gt;&lt;/a&gt;&lt;/font&gt;&amp;nbsp;&amp;nbsp;&lt;font class=text&gt;&lt;a href="javascript:dl_confirm('&lt;%=ref%&gt;')"&gt;&lt;img src='/Library\images\delete2.gif' border=0 alt='
 Delete '&gt;&lt;/a&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;/table&gt;<BR>&nbsp;&lt;/fieldset&gt;<BR>&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp; &lt;%elseif (Request.QueryString ("fw")="nw") then%&gt;<BR>&nbsp;&lt;tr&gt;&lt;td align=left valign="top"&nbsp; class="cont"&gt;<BR>&nbsp;&lt;%&nbsp;<BR>&nbsp;rs_temp.Open "select max(t1_code_in) from cont_type",con,2,2<BR>&nbsp;if rs_temp.Fields (0)&gt;0 then<BR>&nbsp;&nbsp;inc_cook=rs_temp.Fields(0)+1<BR>&nbsp;else<BR>&nbsp;&nbsp;inc_cook=1<BR>&nbsp;end if<BR>&nbsp;rs_temp.close()<BR>&nbsp;Response.Cookies ("ref")=inc_cook<BR>&nbsp;%&gt;<BR>&nbsp;&lt;p class="hding"&gt;&amp;nbsp;&lt;%=val%&gt;&lt;/p&gt;<BR>&nbsp;&lt;fieldset name="nwfieldset" value="" style='margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px;
 border-color: #D2D2D2 #D2D2D2 #D2D2D2 #D2D2D2; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px;width:100%;height:90%;'&gt;<BR>&nbsp;&nbsp;&lt;table border=0 width=100% cellpadding=2 cellspacing=2 height="100%"&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign="top" align="center" class="big"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border=0 width=100% cellpadding=2 cellspacing=2&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign="top" align="center" class="big" &gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt;&lt;b&gt;&lt;%<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (request.QueryString("sv")="dok") then <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;response.Write("&lt;font color=red&gt;"&amp;ucase(request.QueryString("name"))&amp;" deleted successfully.&lt;/font&gt;")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end
 if<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%&gt;&lt;/b&gt;&lt;/p&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign="top" height="100%"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border=0 width=100% cellpadding=2 cellspacing=2 bgcolor="&lt;%=colorcode2%&gt;"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;form width=50 name="frm" method="post" action="un_com_det.asp?fw=sv&amp;Com=&lt;%=Com%&gt;&amp;lkcode=&lt;%=request.QueryString("lkcode")%&gt;"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td class=bold colspan=2 align=left bgcolor='&lt;%=colorcode1%&gt;'&gt;Description&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td class=bold colspan=2 align=left&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td width="50%" align=center
 colspan=2&gt;&lt;%=RTAToolBar%&gt;&lt;/td&gt;&lt;/tr&gt;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td align=left colspan=2&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table align='center' width='100%' height='200' border='1' cellspacing='0' cellpadding='0' bgcolor='#fdfeff' bordercolor='#000000' bordercolordark='#fdfeff'&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign='center' align=left&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;IFRAME ID='Description1' name='Description1' width='100%' height='300' onfocus='setVar(Description1,20,1)' src='iframedefault.html' MARGINHEIGHT=0 MARGINWIDTH=0 frameborder=0&gt;&lt;/IFRAME&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;INPUT type="hidden" id="Description"
 name="Description" size="100"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;INPUT type="hidden" id="images" name="images" size="100"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr bgcolor="&lt;%=colorcode1%&gt;"&gt;&lt;td height="20" align="center" colspan="2"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" class="submitbut" name="Submit" value="Submit" onClick="return valid();"&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="reset" name="Reset" value="Reset" class="submitbut"&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/form&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;/fieldset&gt;<BR>&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp; &lt;%elseif
 (Request.QueryString ("fw")="ed") then%&gt;<BR>&nbsp;&lt;tr&gt;&lt;td align="left" valign="top" class="cont"&gt;<BR>&nbsp;&lt;%rs_temp.open "select * from cont_type where lk_code_in="&amp;request.QueryString("lkcode"),con,2,2&nbsp;<BR>&nbsp;<BR>&nbsp;set myfile=fileobject.CreateTextFile(server.MapPath("/Common\Disp\Content.html"),true)&nbsp;<BR>&nbsp;&nbsp;myfile.write("&lt;html&gt;&lt;body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0&gt;"&amp;rs_temp("t1_desc_nt")&amp;"&lt;/body&gt;&lt;/html&gt;")<BR>&nbsp;&nbsp;myfile.close()<BR>&nbsp;Response.Cookies ("ref")=Request.QueryString("edcode")%&gt;<BR>&nbsp;<BR>&nbsp;&lt;p class="hding"&gt;&amp;nbsp;&lt;%=val%&gt;&lt;/p&gt;<BR>&nbsp;&lt;fieldset name="nwfieldset" value="" style='margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; border-color: #D2D2D2 #D2D2D2 #D2D2D2 #D2D2D2; border-style: solid; border-top-width: 1px;
 border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px;width:100%;height:90%;'&gt;<BR>&nbsp;&nbsp;&lt;table border=0 width=100% cellpadding=2 cellspacing=2 height="100%"&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign="top" height="100%"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;table border=0 width=100% cellpadding=2 cellspacing=2 bgcolor="&lt;%=colorcode2%&gt;"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;form name="frm" method="post" action="un_com_det.asp?fw=edsv&amp;Com=&lt;%=Com%&gt;&amp;edcode=&lt;%=request.QueryString("edcode")%&gt;&amp;lkcode=&lt;%=request.QueryString("lkcode")%&gt;"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td width='25%' class=bold colspan=2 align=left bgcolor='&lt;%=colorcode1%&gt;'&gt;Description&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td width='25%' class=bold colspan=2 align=left&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td align=center
 colspan=2&gt;&lt;%=RTAToolBar%&gt;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td align=left colspan=2&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table align='center' width='100%' height='300' border='1' cellspacing='0' cellpadding='0' bgcolor='#fdfeff' bordercolor='#000000' bordercolordark='#fdfeff'&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;&lt;td valign='center' align=left&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;IFRAME ID='Description1' name='Description1' width='100%' height='300' onfocus='setVar(Description1,20,1)' src='/Common\Disp\Content.html' MARGINHEIGHT=0 MARGINWIDTH=0 frameborder=0&gt;&lt;/IFRAME&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;INPUT type="hidden" id="Description" name="Description"
 size="100"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;INPUT type="hidden" id="images" name="images" size=100&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr bgcolor='&lt;%=colorcode1%&gt;'&gt;&lt;td height="20" align="center"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="submit" name="Submit" value=" Update " onClick="return valid();" class='submitbut'&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type="reset" name="Reset" value="Reset" class='submitbut'&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;%<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;file_ref="un_com_det.asp?fw=ls&amp;Com="&amp;Com&amp;"&amp;lkcode="&amp;request.QueryString("lkcode")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.Write("&lt;INPUT name='submit' class='submitbut' type='button' value=' View '
 onclick=list('"&amp;file_ref&amp;"')&gt;")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/form&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp;&nbsp;&lt;/fieldset&gt;<BR>&nbsp;&lt;/td&gt;&lt;/tr&gt;<BR>&nbsp; &lt;%end if%&gt;<BR>&lt;/table&gt;<BR>&lt;/body&gt;<BR>&lt;/html&gt;<BR>&lt;%else<BR>&nbsp;Response.Redirect ("unauth.asp")<BR>end if%&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV>sorry for inconvenience...</DIV>
<DIV>&nbsp;</DIV>
<DIV>pls reply me..</DIV><p>__________________________________________________<br>Do You Yahoo!?<br>Tired of spam?  Yahoo! Mail has the best spam protection around <br>http://mail.yahoo.com