TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Anil Sharma
NA
29
14.9k
how to call scalar function sqlserver in asp.net.cs
Feb 19 2020 6:42 AM
hi expert
please guide me how i can call the function result in asp.net program in a text field
i try as below but result is null
SqlCommand cmd = new SqlCommand("SELECT * FROM dbo.check_farmer_loan(@farmer_cd)", connect);
// cmd.CommandType=CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@farmer_cd",party_code.Text);
SqlDataAdapter db = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
db.Fill(dt);
loan_amt.Text = dt.Rows[0][0].ToString();
Reply
Answers (
4
)
How to solve this Error
How to print rdlc report without report viewer