About Debugging

  • Thread starter Thread starter Ather Ali Shaikh
  • Start date Start date
A

Ather Ali Shaikh

Hello All,

I have page name MyPage.aspx
it has Custom control. fine.
and a textbox taking date fine.
a button which is used to filter the MyPage.aspx against the date input into textbox.

but when I click the button it is not working. nor debug the page load event of that page. only the Page_Init is fire and no event is fired. when I set a book mark it give the message that.
" The breakpoint will not currently be hit. No executable code is associated with this line"

Why this occured. I do not know. Please help as soon as possible.

Regards
Ather Ali Shaikh
 
Hi Athar,

What is the code on that line, if it is by instance a declaration without
assigning a value or reference you get this.

I hope this helps,

Cor


I have page name MyPage.aspx
it has Custom control. fine.
and a textbox taking date fine.
a button which is used to filter the MyPage.aspx against the date input into
textbox.

but when I click the button it is not working. nor debug the page load event
of that page. only the Page_Init is fire and no event is fired. when I set a
book mark it give the message that.
" The breakpoint will not currently be hit. No executable code is associated
with this line"

Why this occured. I do not know. Please help as soon as possible.
 
Ather said:
Hello All,

I have page name MyPage.aspx
it has Custom control. fine.
and a textbox taking date fine.
a button which is used to filter the MyPage.aspx against the date input
into textbox.

but when I click the button it is not working. nor debug the page load
event of that page. only the Page_Init is fire and no event is fired.
when I set a book mark it give the message that.
" The breakpoint will not currently be hit. No executable code is
associated with this line"

Why this occured. I do not know. Please help as soon as possible.

Regards
Ather Ali Shaikh
Ather,
Check to see if theres a method assigned to the event delegate that
your trying to capture
Thanks
 
Back
Top