Click here to Skip to main content
15,915,328 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questiondownload an exe file. Pin
srinandan..22-Jan-07 1:57
srinandan..22-Jan-07 1:57 
AnswerRe: download an exe file. Pin
Sebastien Lachance22-Jan-07 2:07
Sebastien Lachance22-Jan-07 2:07 
Questionconvert any web page like [ php or asp or aspx ] to html page Pin
tandurkar22-Jan-07 1:11
tandurkar22-Jan-07 1:11 
AnswerRe: convert any web page like [ php or asp or aspx ] to html page Pin
PSK_22-Jan-07 1:25
PSK_22-Jan-07 1:25 
QuestionProblem of ViewState Pin
Abhishek Joshi22-Jan-07 1:08
Abhishek Joshi22-Jan-07 1:08 
QuestionHow do I get the value from a particular cell in the gridview? Pin
blurMember22-Jan-07 1:07
blurMember22-Jan-07 1:07 
AnswerRe: How do I get the value from a particular cell in the gridview? Pin
Dayekh22-Jan-07 4:48
Dayekh22-Jan-07 4:48 
QuestionERROR :Threading was being aborted. Pin
mohd imran abdul aziz22-Jan-07 0:16
mohd imran abdul aziz22-Jan-07 0:16 
Dear All,
i am bit new to the dotnet world. i am making web application using asp.net ,C# (Visual studio 2005).
i have login form where login_authentication i have writted following code

setting = ConfigurationManager.ConnectionStrings["databaseconnection"];
if (setting != null)
{
// some code
try
{
//SOME CODE
rdr = cmd.ExecuteReader();
if (rdr.Read())
{
Session["member"] = username;
Session["brid"] = rdr["branchid"];
cmd1 = new SqlCommand("Sp_after_ext");
cmd1.CommandType = CommandType.StoredProcedure;
cmd1.Connection = conn;
cmd1.Parameters.Add("@user", SqlDbType.VarChar);
cmd1.Parameters["@user"].Value = username;
cmd1.Parameters.Add("@userpass", SqlDbType.VarChar);
cmd1.Parameters["@userpass"].Value = pswd;
cmd1.Parameters.Add("@brid", SqlDbType.VarChar);
cmd1.Parameters["@brid"].Value = rdr["branchid"];
cmd1.Parameters.Add("@sid", SqlDbType.VarChar);
cmd1.Parameters["@sid"].Value = Session.SessionID;
rdr.Close();
cmd1.ExecuteNonQuery();
Response.Redirect("welcome.aspx"); //Server.Transfer("welcome.aspx");


}
else
{
Login1.FailureText = "Your login attempt was not successful. Please try again.";
}
}
catch (Exception ex)
{
Response.Output.Write(ex.ToString());
}

where this line give me error Response.Redirect("welcome.aspx");
states as THreading was being aborted.
please guide me where i am going wrong

thanks


regards
imran khan

AnswerRe: ERROR :Threading was being aborted. Pin
PSK_22-Jan-07 0:46
PSK_22-Jan-07 0:46 
AnswerRe: ERROR :Threading was being aborted. Pin
Jon Sagara22-Jan-07 6:27
Jon Sagara22-Jan-07 6:27 
QuestionRepeater Control VS 2003 VS VS 2005 Pin
just3ala221-Jan-07 23:56
just3ala221-Jan-07 23:56 
AnswerRe: Repeater Control VS 2003 VS VS 2005 Pin
just3ala222-Jan-07 0:11
just3ala222-Jan-07 0:11 
QuestionActive Directory and LDAP Pin
aaraaayen21-Jan-07 23:50
aaraaayen21-Jan-07 23:50 
QuestionHow set edit the cell in GridView Pin
slSoftware21-Jan-07 23:19
slSoftware21-Jan-07 23:19 
Questionserver side and client side Pin
ravikiranreddydharmannagari21-Jan-07 23:15
ravikiranreddydharmannagari21-Jan-07 23:15 
AnswerRe: server side and client side Pin
Guffa22-Jan-07 0:30
Guffa22-Jan-07 0:30 
QuestionOpen New Page Pin
Mohammed Elkholy21-Jan-07 23:11
Mohammed Elkholy21-Jan-07 23:11 
AnswerRe: Open New Page Pin
enjoycrack21-Jan-07 23:31
enjoycrack21-Jan-07 23:31 
GeneralRe: Open New Page Pin
Mohammed Elkholy22-Jan-07 1:06
Mohammed Elkholy22-Jan-07 1:06 
GeneralRe: Open New Page Pin
DavidNohejl22-Jan-07 2:00
DavidNohejl22-Jan-07 2:00 
QuestionSetting mouse over & mouse out event for each item in a DropDownList in asp.net Pin
248912821-Jan-07 23:05
248912821-Jan-07 23:05 
QuestionCalender control validation in javascript Pin
VaibhavTiparadi21-Jan-07 22:43
VaibhavTiparadi21-Jan-07 22:43 
QuestionAttaching Crystal Report Data as an attachment to the SMTP Mail Pin
Vijay_Patil21-Jan-07 21:22
Vijay_Patil21-Jan-07 21:22 
QuestionDatatables Pin
chohanpk21-Jan-07 20:36
chohanpk21-Jan-07 20:36 
AnswerRe: Datatables Pin
Jon Sagara21-Jan-07 20:43
Jon Sagara21-Jan-07 20:43 

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.