| $("#btn_proceed").on('click', function () { | |
| $('#navbar li').each(function(i, obj) { | |
| obj.removeAttribute("style"); | |
| }); | |
| var data_post = $("#navbar").html(); | |
| $.post( | |
| 'save_html.php', | |
| {'nav_list': data_post}, | |
| function (result) { | |
| $("#html_page_form").submit(); | |
| } | |
| ); | |
| }); |
can any one please change from php to aspx
urgent...

Replies
Know the answer? Post it — somebody with the same question will find it here.