views:

31

answers:

3

Hi,

My webpage contains : I did a break points on the Tools.JS , but while debugging I didn't found my JS in Script Documents (Run Time mode) , and i remarked the exclamation message on my BP saying that this break point willn't be take in mind cause the JS document isn't charged.

My question is : Is there another way to load a JS to be available in the debugging mode? and how could i debug my JS in this case ?

Thanks in advance Abdelrahman,

A: 
Pranay Rana
But i want to know why My ScriptManager load the all my JS but didn't load the Tool.Js :
abdelrahman ELGAMAL
here you are my exemple: <asp:ScriptManager ID="ScriptManager" runat="server" EnablePageMethods="true" EnableScriptGlobalization="true"> <Services> </Services> <Scripts> <asp:ScriptReference Path="~/Scripts/Tools.js" /> <asp:ScriptReference Path="~/Scripts/UserActions.js" /> <asp:ScriptReference Path="~/Scripts/SnapManagement.js" /> </Scripts> </asp:ScriptManager>
abdelrahman ELGAMAL
+1  A: 

have you tried firebug ? debugging js with firebug is easier than with visual studio

jebberwocky
I have an explorer limitation , I must use the IE Explorer,, and I just want to debug it in Visual studio
abdelrahman ELGAMAL
A: 

I'd use Firebug. It's an addon to Fireforx

firebug

TAkinremi