Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link Button not working

Status
Not open for further replies.

imterpsfan3

Programmer
Jul 22, 2005
160
US
For some reason I am not able to link to another page with the link button. I call something like Response.Redirect("Default.aspx") and it just hangs. I'm using the click event. However, if I just use a regular html anchor tag I'm able to go to the other page?

I also have this problem with paging on a DataGrid. The numeric pages display at the bottom of the grid, but it doesn't switch to the next page.

Microsoft Certified Solutions Developer -- Visual Basic 6
Microsoft Certified Applications Developer C# (in the works)
 
Post the code of the event handler for the linkbutton's click event.
 
private void LinkButton1_Click(object sender, EventArgs e)
{
Response.Redirect("Default.aspx");
}

Microsoft Certified Solutions Developer -- Visual Basic 6
Microsoft Certified Applications Developer C# (in the works)
 
I figured out what was wrong. It had nothing to do with the code, Visual Studio, webconfig or etc. I had messed around with the security settings of internet explorer and it had disabled active scripting. Once I enabled it bing bang boom both the paging and the link button worked. The reason: paging and the link button both use javascript in the background to do it's job. I was essentially disabling javascript.

Now it's fixed.

Microsoft Certified Solutions Developer -- Visual Basic 6
Microsoft Certified Applications Developer C# (in the works)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top