Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am accessing the appsettings key from the web.config file of my web application in my Javascript code(.aspx).The problem which i am facing is that the complete URL is visible on the browser during debugging which is a security issue. Is there any way i can avoid that? i tried using encryption techniques available in JS but still the URL is visible. Any help on this will be highly appreciated.

CHeers, Sajesh

share|improve this question
1  
I am accessing the key in my Javascript from the web.config file This doesn't make any sense. Can you rephrase it? – asawyer Jun 18 '12 at 12:07
could you pls post some code? because how can u access web.config from javascript? – Vetrivel mp Jun 18 '12 at 12:09
i can use something like var abc= '<%=ConfigurationManager.AppSettings["Path"].ToString() %>' in my javascript...note this is valid only for .aspx pages and not for .html pages – sajesh Nambiar Jun 18 '12 at 12:17
javascript is a visible language, you can't do anything to hide javascript code. – Benjamin Gruenbaum Jun 18 '12 at 12:18
since the code is executed on server in aspx, how can URL be visible on client side then?? am i missing something. – Furqan Jun 18 '12 at 12:20
show 9 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.