
abeetha.m
Members-
Content Count
12 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout abeetha.m
-
Rank
Newbie
-
1) How do you check if a date is valid?2) How can I password protect a page?3) How do I detect the browser the user is using?4) How can I read and write to a text file?5) How do I change text within table cells?
-
i wrote some code here,in this code stored procedure is returning a datareader objectSqlConnection sqlConnection1 = new SqlConnection("Your Connection String");SqlCommand cmd = new SqlCommand();SqlDataReader reader;cmd.CommandText = "StoredProcedureName";cmd.CommandType = CommandType.StoredProcedure;cmd.Connection = sqlConnection1;sqlConnection1.Open();reader = cmd.ExecuteReader();sqlConnection1.Close();now::: in the same is there any method which returns dataset???
-
Write a program in HTML/Javascript to display all tags , including sub tags in a web page .
-
Write a program in HTML/Javascript to display all tags , including sub tags in a web page .
-
can a storedprocedure returns dataset.(in dotnet frame work 1.1)