I've this script inside my classic asp.
<script type="text/javascript">
var $dialog = $('<div></div>');
$dialog.load('cad_usr_pto_padrao_livres.asp?cd_usuario=' + <%= "'" & v_cd_usuario_cl & "'" %>);
$dialog.dialog({ title: 'Cadastro de Ponto Padrão', height: 300, width: 400,
closeOnEscape: true, hide: 'slide', position: 'center' });
</script>
The behavior is basically create a modal the show the contents of cad_usr_pto_padrao_livres.asp
. At first time, everything works fine, but after a second usage of this modal, the page don't reload.
I've tried press ctrl+F5 to clean cache but nothing happens, but if I close and reopen the browser (Ie8) the page shows another (updated) fields.
*This page (cad_usr_pto_padrao_livres.asp
), basically verify the standard equipment for each user and allow this change. So I can change but, I don't know how refresh the page.