|
|
 |
| ASP.NET 1.1 As of 10/6/2005, this forum is locked as part of the reorganization described here: http://p2p.wrox.com/topic.asp?TOPIC_ID=35394. No posts have been deleted. Open ongoing discussions from the last week have been moved to either ASP.NET 1.0 and 1.1 Beginners http://p2p.wrox.com/asp-net-1-0-1-1-basics-60/ or ASP.NET 1.0 and 1.1 Professional. http://p2p.wrox.com/forum.asp?FORUM_ID=50. See my sticky post inside for more. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 1.1 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|

January 19th, 2004, 04:08 PM
|
|
Registered User
|
|
Join Date: Dec 2003
Location: , , .
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
passing input parameter to sql server sproc
I have a very simple Stored Procedure that isn't working for me:
CREATE PROCEDURE FindTutors
(
@LastName NVarChar
)
As
(
SELECT fn, ln FROM main WHERE ln = @LastName
)
GO
__________
Very simple; just trying to pass the @LastName parameter from my ASP.NET code. Still, whenever I click the button that is supposed to show all results in a datagrid, nothing comes up. I have altered the Sproc to just be "SELECT fn, ln FROM Main WHERE ln = 'Damon' " and it works fine then - so I know it's a matter of passing this parameter. Here is my codebehind - anyone have any ideas?
Public Sub FindTutors(ByVal sender As Object, ByVal e As EventArgs) Handles btnFind.Click
Dim cn As SqlConnection = New SqlConnection(ConfigurationSettings.AppSettings("C onnString"))
Dim Cmd As SqlCommand = New SqlCommand("FindTutors", cn)
Cmd.CommandType = CommandType.StoredProcedure
Cmd.Parameters.Add("@LastName", SqlDbType.NVarChar).Value() = txtLastName.Text.ToString()
'Cmd.Parameters.Add("@LastName", txtLastName.Text)
cn.Open()
Dim rdrContent As SqlDataReader
gridTutors.DataSource = Cmd.ExecuteReader()
gridTutors.DataBind()
cn.Close()
End Sub
|

January 19th, 2004, 05:10 PM
|
 |
Friend of Wrox
Points: 16,368, Level: 55 |
|
|
Join Date: Aug 2003
Location: Clifton Park, New York, USA.
Posts: 5,394
Thanks: 0
Thanked 2 Times in 2 Posts
|
|
That code looks fine. I never use NVarChar fields, not really sure what those get you that regular VarChars don't but perhaps that's causing the problem.
Peter
------------------------------------------------------
Work smarter, not harder.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |