
Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
> > There is a menu on the main page which, when clicked brings up a
> > dialog box which needs filling out. I just can't find the code for
[quoted text clipped - 6 lines]
> Mark Rae
> ASP.NET MVPhttp://www.markrae.net
Alas, no. I did a search and only found corresponding text in a .isql
document in a stored procedure.
Searching for the procedure name didnt bring up anything, which i
thought was odd...
Mark Rae [MVP] - 20 Dec 2007 14:50 GMT
>> > There is a menu on the main page which, when clicked brings up a
>> > dialog box which needs filling out. I just can't find the code for
[quoted text clipped - 7 lines]
> Searching for the procedure name didnt bring up anything, which i
> thought was odd...
Hmm - well, the page from which the dialog box is launched must display its
name in the browser address bar, so I guess that's your starting point...
I've been in your situation before many times, and don't envy you one bit!

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Mohamad Elarabi - 20 Dec 2007 19:45 GMT
You can turn tracing on either in the web config or on that aspx page you're
debugging also turn debug=true.
The problem with stepping through is that you get the top-bottom run process
but you may not go through all events that actually take place.
If you look at the aspx page, the code that's rendering is either on the
page itself, in a master page, or in a control that is used on the page. If
you suspect a certain custom control you can right click on its name and
select "Go to definition" and that might take you to the control's code where
you can put breaks there as well.
Good luck with this. I hate it when that happens.

Signature
Mohamad Elarabi
Lead Developer. MCTS, MCPD.
> > > There is a menu on the main page which, when clicked brings up a
> > > dialog box which needs filling out. I just can't find the code for
[quoted text clipped - 11 lines]
> Searching for the procedure name didnt bring up anything, which i
> thought was odd...