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
narasiman rao
NA
519
766.1k
I have some doubt
Oct 19 2012 5:28 AM
i done a small application in asp.net with csharp code.
Design As Follows;
Project ID Dropdown P00001 to P00010,R00001 to R00010 etc.
Project Cost Textbox1
Project Name Textbox2
for this i done insert command and records are saved in database.
my Question is in design page i have one textbox and one button,and button name is Projectwisecost.
Textbox3 Projectwisecost(Button Name) .
in textbox3 when i type P00001 that projectcost,name should be displayed.
suppose when i type R00001 that projectcost,name should be displayed.
For the above you send the answer as follows;
private void btnshow_Click(System.Object sender, System.EventArgs e)
{
con.Open();
string str = "select * from student where sid='" + TextBox1.Text + "'";
SqlCommand com = new SqlCommand(str, con);
SqlDataAdapter sqlda = new SqlDataAdapter(com);
DataSet ds = new DataSet();
sqlda.Fill(ds, "student");
con.Close();
r1.SetDataSource(ds);
CrystalReportViewer1.
ReportSource = r1;
CrystalReportViewer1.
RefreshReport();
CrystalReportViewer1.Refresh()
;
}
from this code i have some doubt.in the above code what is meant for r1.
please help me.
Reply
Answers (
2
)
Regarding Image Issue
check if array contains certain text, and if so, add the rows to listbox