Click here to Skip to main content
15,881,559 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: AppDomain.CurrentDomain and static methods Pin
Adriaan Davel4-Jun-09 1:58
Adriaan Davel4-Jun-09 1:58 
GeneralRe: AppDomain.CurrentDomain and static methods Pin
Nicholas Butler4-Jun-09 2:02
sitebuilderNicholas Butler4-Jun-09 2:02 
GeneralRe: AppDomain.CurrentDomain and static methods Pin
Adriaan Davel4-Jun-09 19:11
Adriaan Davel4-Jun-09 19:11 
GeneralRe: AppDomain.CurrentDomain and static methods Pin
Adriaan Davel4-Jun-09 19:42
Adriaan Davel4-Jun-09 19:42 
GeneralRe: AppDomain.CurrentDomain and static methods Pin
Nicholas Butler5-Jun-09 1:50
sitebuilderNicholas Butler5-Jun-09 1:50 
QuestionHi Frnds ,,Im a beginner in website designing Pin
jeswanth_073-Jun-09 21:16
jeswanth_073-Jun-09 21:16 
AnswerRe: Hi Frnds ,,Im a beginner in website designing Pin
Pete O'Hanlon3-Jun-09 21:39
mvePete O'Hanlon3-Jun-09 21:39 
Questionerror-data reader already open Pin
manjusha s3-Jun-09 2:35
manjusha s3-Jun-09 2:35 
SqlConnection con = new SqlConnection("Data Source=.\\sqlexpress;Initial Catalog=MLM;Integrated Security=True");
con.Open();

SqlCommand com = new SqlCommand("select Pin_Password from RegistrationForm where Pin_Password = '" + TextBox3.Text + "'", con);

SqlDataReader rs = com.ExecuteReader();
DataSet ds = new DataSet();
while (rs.Read())
{
if (rs["Pin_Password"].ToString().Trim().Equals(TextBox3.Text.Trim()))
{
DateTime dtStart;
DateTime.TryParse(TextBox1.Text, out dtStart);
DateTime dtEnd;
DateTime.TryParse(TextBox1.Text, out dtEnd);

SqlDataAdapter adp = new SqlDataAdapter("select RequestedDate,RequestedPins,ApprovedPins,Action from AdminPins where RequestedDate between '" + dtStart + "' and '" + dtEnd + "'", con);

adp.Fill(ds);//It is giving error at this place
ds.Clear();
GridView1.DataSource = ds.Tables[0];
GridView1.DataBind(); Sigh | :sigh:

}

else
{
Response.Write("Enter Correct Password");
}

}


rs.Close();
com.ExecuteNonQuery();
con.Close();
AnswerRe: error-data reader already open Pin
Pete O'Hanlon3-Jun-09 3:02
mvePete O'Hanlon3-Jun-09 3:02 
QuestionRegistry Hive by name? Pin
lee232-Jun-09 22:27
lee232-Jun-09 22:27 
AnswerRe: Registry Hive by name? Pin
Simon P Stevens3-Jun-09 4:27
Simon P Stevens3-Jun-09 4:27 
GeneralRe: Registry Hive by name? Pin
Not Active3-Jun-09 10:14
mentorNot Active3-Jun-09 10:14 
GeneralRe: Registry Hive by name? Pin
Simon P Stevens3-Jun-09 11:11
Simon P Stevens3-Jun-09 11:11 
GeneralRe: Registry Hive by name? Pin
lee233-Jun-09 13:27
lee233-Jun-09 13:27 
QuestionXML Serialization Problem with properties that when set change object status Pin
Sebastian Streiger2-Jun-09 2:32
Sebastian Streiger2-Jun-09 2:32 
AnswerRe: XML Serialization Problem with properties that when set change object status [modified] Pin
Moreno Airoldi3-Jun-09 1:35
Moreno Airoldi3-Jun-09 1:35 
GeneralRe: XML Serialization Problem with properties that when set change object status Pin
Sebastian Streiger3-Jun-09 2:23
Sebastian Streiger3-Jun-09 2:23 
GeneralRe: XML Serialization Problem with properties that when set change object status Pin
Moreno Airoldi3-Jun-09 3:03
Moreno Airoldi3-Jun-09 3:03 
GeneralRe: XML Serialization Problem with properties that when set change object status Pin
Sebastian Streiger3-Jun-09 3:22
Sebastian Streiger3-Jun-09 3:22 
GeneralRe: XML Serialization Problem with properties that when set change object status Pin
Moreno Airoldi3-Jun-09 22:36
Moreno Airoldi3-Jun-09 22:36 
GeneralRe: XML Serialization Problem with properties that when set change object status Pin
Sebastian Streiger4-Jun-09 4:40
Sebastian Streiger4-Jun-09 4:40 
GeneralRe: XML Serialization Problem with properties that when set change object status Pin
Moreno Airoldi4-Jun-09 4:47
Moreno Airoldi4-Jun-09 4:47 
QuestionPlaying smoothly small pieces with DirectSound Pin
Andrey U2-Jun-09 0:09
Andrey U2-Jun-09 0:09 
AnswerRe: Playing smoothly small pieces with DirectSound Pin
molesworth2-Jun-09 3:31
molesworth2-Jun-09 3:31 
GeneralRe: Playing smoothly small pieces with DirectSound Pin
Andrey U2-Jun-09 4:18
Andrey U2-Jun-09 4:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.