we have migrated windows server linux server. trying redirect .aspx urls html urls. the static pages works fine if used redirect 301 /contact.aspx http://mysite.com/contact.html but when try add redirect like redirect 301 /products.aspx?cid=30&bid=5 http://mysite.com/category/books.html the redirect not working. any advice highly appreciated
i've built dynamic table has add button (that adds new row), delete button (deletes rows) , submit. i wanna take information in table (i don't know how many rows user add) , process @ other jsp page. this have far: <script type="text/javascript"> var cb=new array(); var fn=new array(); var ln=new array(); var email=new array(); var i=1; function addrow(tableid){ var table=document.getelementbyid(tableid); var rowcount=table.rows.length; var row=table.insertrow(rowcount); var cell= row.insertcell(0); var element=document.createelement("input"); element.type="checkbox"; element.name="cb"+i+""; cell.appendchild(element); var cell1=row.in...
Comments
Post a Comment