I'm very new to .net and I kinda jumped in after reading a few chapters in the dummies books. I have a question about where I put and what code I use to pass the value of a text box into a stored procedure.
Do I put it in the click sub of the button here is what I have right now
Private Sub btnGetCust_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGetCust.Click
myComponent.FillDataSet(DsGetTConsumer1)
DataGrid1.DataBind()
End Sub
or do I put it somewhere in the in the component code?
Also what are some good online references for .net. I can never find anything on the msdn site.
Thanks in advance for the help
Do I put it in the click sub of the button here is what I have right now
Private Sub btnGetCust_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGetCust.Click
myComponent.FillDataSet(DsGetTConsumer1)
DataGrid1.DataBind()
End Sub
or do I put it somewhere in the in the component code?
Also what are some good online references for .net. I can never find anything on the msdn site.
Thanks in advance for the help