View Source
-
Why are you using hidden fields instead of viewstate ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
Please Tell me Just How Can I disable View Source.(When u right click on a page and Click on View Source). I want to disable View Source on page and also in toolbar "view"
-
Hi All I have a page in which I Send some important Data in hiden fields. Now the problem is that when the page load and u right click it show the source code. How can I Disable the Source Code of the page. Also From the Menu Bar View. Please Help me it is very urgent. Thanks in Advance. With Best Regards. Bangash
hi, YOU CANNOT DO THAT. you can stop the right click on browser....but you cannot disable ViewSource menuitem in View menu in toolbar.......it just cannot be achieved by any means.... i once had the same problem. you can decrypt the code but make sure to take a back up of html. Regards, Kapil Thakur (Where's there is Kapil , there is a way) - thakur.kapil@gmail.com
-
Hi All I have a page in which I Send some important Data in hiden fields. Now the problem is that when the page load and u right click it show the source code. How can I Disable the Source Code of the page. Also From the Menu Bar View. Please Help me it is very urgent. Thanks in Advance. With Best Regards. Bangash
There is no way that you can safely protect the source of the page. If you don't want the data to be available to anyone, don't put it in the page. There is some Javascript that can disable some of the options in some specific browser, but anyone interrested in viewing the source code can use a different browser or disable Javscript to be able to see the source.
--- b { font-weight: normal; }
-
There is no way that you can safely protect the source of the page. If you don't want the data to be available to anyone, don't put it in the page. There is some Javascript that can disable some of the options in some specific browser, but anyone interrested in viewing the source code can use a different browser or disable Javscript to be able to see the source.
--- b { font-weight: normal; }
Actually I m sending Username and Password to a page in hidden fields. If u can please Tell what method should I use. Please give me a coding example. Its very urgent. Thankx for ur comments
-
Actually I m sending Username and Password to a page in hidden fields. If u can please Tell what method should I use. Please give me a coding example. Its very urgent. Thankx for ur comments
-
Please Tell me Just How Can I disable View Source.(When u right click on a page and Click on View Source). I want to disable View Source on page and also in toolbar "view"
You can't stop it from the menu, hence my asking why you;re writing insecure code in the first place. Is there a reason ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Hi, u can use this Javascript code function NoRightClick() { if (event.button==2) { alert('No right clicks allowed.') } } document.onmousedown=NoRightClick Regards, Ritika
Ritika
Dear Ritika Hi have disabled right click. I want to disable the view source in menubar. Is that posible. If not then please tell me how should I send information so that not displayed in view source.
-
Dear Ritika Hi have disabled right click. I want to disable the view source in menubar. Is that posible. If not then please tell me how should I send information so that not displayed in view source.
-
Hi All I have a page in which I Send some important Data in hiden fields. Now the problem is that when the page load and u right click it show the source code. How can I Disable the Source Code of the page. Also From the Menu Bar View. Please Help me it is very urgent. Thanks in Advance. With Best Regards. Bangash
Basically, your approach is completelly wrong. Even if you are able to disable 'View source' code in browser, that still doesn't prevent users to see your source code (anybody can make own 'browser', or just write few lines of code to run WebRequest and retrieve source of your html). If you need to pass any sensible data, use ViewState, for example (anyway, it is not 100% secure, but it is not in plain text at least) override LoadViewState and SaveViewState method of your ASP.NET page to implement this functionality. If you don't know how to do this, ask google: http://www.google.co.uk/search?hl=en&q=override+SaveViewState&btnG=Search&meta= I still don't understand, why do you want to pass sensible data into a page, why you just don't keep them on server? Pilo
-
Please Tell me Just How Can I disable View Source.(When u right click on a page and Click on View Source). I want to disable View Source on page and also in toolbar "view"
-
Actually I m sending Username and Password to a page in hidden fields. If u can please Tell what method should I use. Please give me a coding example. Its very urgent. Thankx for ur comments