Jump to content

manish_joisar

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by manish_joisar

  1. Thanks for your replyProblem here is we have to give option to user for offline entry & user will have option like open/save dialogue.This means user can save in any folder. And as we can't expect that in all user's machine server configuration will be there.Any other way to work around as client is not accepting what we are givingStill waiting
  2. ThanksIt will be great if someone give solutionAs when we have given demo to client they asked like ' why this is coming As you told you are not using any activex control then y this activex warning is coming 'At that time we can't tell them that this is something related to IE & not with oursSo now we are not able to make them understand that this is how it will workSo we want solution. Waiting for solution
  3. Thanks for your helps jesh, xpriensWe are going for innerHTML as it will be easy & no extra work required & for onchange events for all objects it will be more work on developer sideI have already implemented looping of all elements stores values in global javascript variablein header frame. It will not take much time as it will run on client side& while clicking on any other link i call common function which check previous values & current values & do as neededThanks again
  4. fso = new ActiveXObject("Scripting.FileSystemObject"); s = fso.CreateTextFile(saveurl, true);When i do this i am getting 1st i am use to get error like ' Description:Automation server can't create object 'then we changed setting in Internet Explorer -> Tools -> Internet Options -> Security Tab -> Custom Level -> Initialize and script ActiveX Controls not marked as safe should be changed to Enable.Now if HTML file is in localhost & user is opening page likehttp://localhost/Htmlpage.htmthen this setting works But when open it likeC:\NewFolder\Htmlpage.htmthen everytime we are getting message when we open page & click on Save as' An ActiveX control on this page might be unsafe to interact with other parts of the page. Do you want to allow this interaction ?'if use say Yes then it works & if say no then again same error comesNow we want somehow we change setting internal OFF & after completing task make it ONHow to solve this issue, we are really stuck & need to solve this before 29/01/2007Thanks in advance
  5. I have written javascript which tells about logic of my pageI want to secure it, can i do it ??otherwise if people do likehttp://website/application/sample.jsOpen/Save dialogue will come & it will be easily accessibleThanks in advance
  6. u r rightBut problem here i have around 100 textbox, combobox, checkbox & so on in my pageIf i have to do the way you said then i have loop around all the controls & store in variable & then again same thing when i want to check for any changes is done or not( this we are going to do if don't get any solution )This will be time consuming process instead of that body.innerHTML will give me for whole pageIt's working in IE but in netscape it's not giving me latest innerHTMLThis i want as user if click on any link & if he/she has done some changes to current page then i should warn him before going to another pageThanks for your replyWaiting for Netscape Solution
  7. No Same ResultsI am getting the same details after entering in the textbox
  8. I want to compare innerHTML when page load & if i changed anything in textboxIts works fine in IEBut when i check with Netscape , both HTML i got the same datae.g.<script language=javascript>var varbodyHTML;on body_onload(){ varbodyHTML = document.body.innerHTML;}function func_btn_click(){ varbodynewHTML = document.body.innerHTML/* this should be differ then previous one as i am entering some values in textbox It works in IE but in netscape it's not taking entered data in textbox*/}</script>
×
×
  • Create New...