Hi, I am relatively new to ASP.NET and I am experimenting with some code and
exercises.
My question: Say I have some stacktrace because I have some error.
[NotSupportedExc eption: Specified method is not supported.]
System.Web.UI.D ataSourceView.E xecuteDelete(ID ictionary keys, IDictionary
oldValues) +28
System.Web.UI.D ataSourceView.D elete(IDictiona ry keys, IDictionary
oldValues, DataSourceViewO perationCallbac k callback) +75
System.Web.UI.W ebControls.Grid View.HandleDele te(GridViewRow row, Int32
rowIndex) +927
System.Web.UI.W ebControls.Grid View.HandleEven t(EventArgs e, Boolean
causesValidatio n, String validationGroup ) +1134
System.Web.UI.W ebControls.Grid View.RaisePostB ackEvent(String
eventArgument) +199
System.Web.UI.W ebControls.Grid View.System.Web .UI.IPostBackEv entHandler.Rais ePostBackEvent( String
eventArgument) +7
System.Web.UI.P age.RaisePostBa ckEvent(IPostBa ckEventHandler
sourceControl, String eventArgument) +11
System.Web.UI.P age.RaisePostBa ckEvent(NameVal ueCollection postData) +177
System.Web.UI.P age.ProcessRequ estMain(Boolean
includeStagesBe foreAsyncPoint, Boolean includeStagesAf terAsyncPoint) +1746
Can I somehow place a breakpoint in
'System.Web.UI. DataSourceView. ExecuteDelete' and look at what is happening
there?
(Well, I think, probably not since the code for the framework is not shipped
as far as I can see.)
exercises.
My question: Say I have some stacktrace because I have some error.
[NotSupportedExc eption: Specified method is not supported.]
System.Web.UI.D ataSourceView.E xecuteDelete(ID ictionary keys, IDictionary
oldValues) +28
System.Web.UI.D ataSourceView.D elete(IDictiona ry keys, IDictionary
oldValues, DataSourceViewO perationCallbac k callback) +75
System.Web.UI.W ebControls.Grid View.HandleDele te(GridViewRow row, Int32
rowIndex) +927
System.Web.UI.W ebControls.Grid View.HandleEven t(EventArgs e, Boolean
causesValidatio n, String validationGroup ) +1134
System.Web.UI.W ebControls.Grid View.RaisePostB ackEvent(String
eventArgument) +199
System.Web.UI.W ebControls.Grid View.System.Web .UI.IPostBackEv entHandler.Rais ePostBackEvent( String
eventArgument) +7
System.Web.UI.P age.RaisePostBa ckEvent(IPostBa ckEventHandler
sourceControl, String eventArgument) +11
System.Web.UI.P age.RaisePostBa ckEvent(NameVal ueCollection postData) +177
System.Web.UI.P age.ProcessRequ estMain(Boolean
includeStagesBe foreAsyncPoint, Boolean includeStagesAf terAsyncPoint) +1746
Can I somehow place a breakpoint in
'System.Web.UI. DataSourceView. ExecuteDelete' and look at what is happening
there?
(Well, I think, probably not since the code for the framework is not shipped
as far as I can see.)
Comment