Click here to Skip to main content
15,887,821 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
Questiongridview column position ".net 2.0 " Pin
fmardani11-Jun-06 21:32
fmardani11-Jun-06 21:32 
AnswerRe: gridview column position ".net 2.0 " Pin
minhpc_bk11-Jun-06 22:42
minhpc_bk11-Jun-06 22:42 
GeneralRe: gridview column position ".net 2.0 " Pin
tanya foster12-Jun-06 10:07
tanya foster12-Jun-06 10:07 
GeneralRe: gridview column position ".net 2.0 " Pin
minhpc_bk12-Jun-06 15:59
minhpc_bk12-Jun-06 15:59 
GeneralRe: gridview column position ".net 2.0 " Pin
tanya foster13-Jun-06 2:12
tanya foster13-Jun-06 2:12 
QuestionRuntime add Values from textbox to DataGrid Pin
varshavmane11-Jun-06 21:30
varshavmane11-Jun-06 21:30 
AnswerRe: Runtime add Values from textbox to DataGrid Pin
alyeasad11-Jun-06 22:48
alyeasad11-Jun-06 22:48 
GeneralRe: Runtime add Values from textbox to DataGrid Pin
varshavmane11-Jun-06 23:18
varshavmane11-Jun-06 23:18 
GeneralRe: Runtime add Values from textbox to DataGrid Pin
alyeasad11-Jun-06 23:26
alyeasad11-Jun-06 23:26 
GeneralRe: Runtime add Values from textbox to DataGrid Pin
varshavmane11-Jun-06 23:32
varshavmane11-Jun-06 23:32 
GeneralRe: Runtime add Values from textbox to DataGrid Pin
alyeasad12-Jun-06 18:33
alyeasad12-Jun-06 18:33 
QuestionDatagrid edit problem Pin
Commickey11-Jun-06 21:26
Commickey11-Jun-06 21:26 
AnswerRe: Datagrid edit problem Pin
amaneet11-Jun-06 22:00
amaneet11-Jun-06 22:00 
GeneralRe: Datagrid edit problem Pin
Commickey11-Jun-06 22:17
Commickey11-Jun-06 22:17 
GeneralRe: Datagrid edit problem Pin
amaneet11-Jun-06 23:16
amaneet11-Jun-06 23:16 
GeneralRe: Datagrid edit problem Pin
Commickey11-Jun-06 23:40
Commickey11-Jun-06 23:40 

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.