Click here to Skip to main content
15,909,030 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionCode protection Pin
RedhaDev12-Jun-06 0:04
RedhaDev12-Jun-06 0:04 
AnswerRe: Code protection Pin
minhpc_bk12-Jun-06 20:02
minhpc_bk12-Jun-06 20:02 
QuestionBest websites to lern ASP.NET Pin
pitturamakrishna11-Jun-06 23:42
pitturamakrishna11-Jun-06 23:42 
AnswerRe: Best websites to lern ASP.NET Pin
minhpc_bk12-Jun-06 16:02
minhpc_bk12-Jun-06 16:02 
Questioncreating Menu Pin
Anant N11-Jun-06 23:41
Anant N11-Jun-06 23:41 
AnswerRe: creating Menu Pin
Paddy Boyd12-Jun-06 1:07
Paddy Boyd12-Jun-06 1:07 
QuestionThreading in .Net (C#) Pin
Venkat Eswaran11-Jun-06 23:35
Venkat Eswaran11-Jun-06 23:35 
AnswerRe: Threading in .Net (C#) Pin
MGreville12-Jun-06 5:30
MGreville12-Jun-06 5:30 
QuestionSession Pin
Socheat.Net11-Jun-06 23:09
Socheat.Net11-Jun-06 23:09 
AnswerRe: Session Pin
alyeasad11-Jun-06 23:32
alyeasad11-Jun-06 23:32 
GeneralRe: Session Pin
Socheat.Net11-Jun-06 23:42
Socheat.Net11-Jun-06 23:42 
GeneralRe: Session Pin
RedhaDev11-Jun-06 23:49
RedhaDev11-Jun-06 23:49 
GeneralRe: Session Pin
Socheat.Net11-Jun-06 23:56
Socheat.Net11-Jun-06 23:56 
GeneralRe: Session Pin
alyeasad12-Jun-06 0:13
alyeasad12-Jun-06 0:13 
Questionclearing old values from text box control Pin
b ravi kumar11-Jun-06 23:06
b ravi kumar11-Jun-06 23:06 
AnswerRe: clearing old values from text box control Pin
alyeasad11-Jun-06 23:34
alyeasad11-Jun-06 23:34 
GeneralRe: clearing old values from text box control Pin
b ravi kumar12-Jun-06 0:41
b ravi kumar12-Jun-06 0:41 
GeneralRe: clearing old values from text box control Pin
Elina Blank13-Jun-06 7:06
sitebuilderElina Blank13-Jun-06 7:06 
Questionstoring excel file in sql server using asp.net Pin
b ravi kumar11-Jun-06 23:03
b ravi kumar11-Jun-06 23:03 
QuestionDownload Pin
kirthikirthi11-Jun-06 23:00
kirthikirthi11-Jun-06 23:00 
QuestionNET Web Twain Pin
ghannam11-Jun-06 22:43
ghannam11-Jun-06 22:43 
AnswerRe: NET Web Twain Pin
alyeasad11-Jun-06 22:59
alyeasad11-Jun-06 22:59 
Questionpublish error in local host Pin
students552 university11-Jun-06 21:59
students552 university11-Jun-06 21:59 
QuestionAsp.Net Internet Explorer Sessions [modified] Pin
oskardiazdeleon11-Jun-06 21:35
oskardiazdeleon11-Jun-06 21:35 
I have this problem and it only seems to happen in IE 6.0. Its an authentication page that goes to a SQL server to get access info. This works great in IE 5.0 and Firefox. But not in 6.0. In firefox if access = true, then I get redirected to Management.aspx not in IE 6. All that happens is textboxes clear and I start at the same page


try
{
string scm = "sp_Access_SEL @Login='" + this.txtLogin.Text + "', @Password='" + this.txtPassword.Text + "'";
InsertIdtoDB(scm);
this.lblPass.Visible = true;
}
catch(Exception ex)
{
this.lblAccess.Text = ex.Message;
}
if(this.lblPass.Text == "0")
{
StringBuilder url = new StringBuilder();
url.Append("Login.aspx");
Response.Redirect(url.ToString());


}
else
{
StringBuilder url = new StringBuilder();
url.Append("Management.aspx");
Session["name"]= this.txtLogin.Text;
Response.Redirect(url.ToString());

}

I have no idea how to fix this. The only other objects on this page are 2 menu(User Controls) and 2 image buttons

-- modified at 3:36 Monday 12th June, 2006
AnswerRe: Asp.Net Internet Explorer Sessions Pin
Paddy Boyd11-Jun-06 22:09
Paddy Boyd11-Jun-06 22:09 

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.