•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the ASP.NET section within the Web Development category of DaniWeb, a massive community of 391,139 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,167 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our ASP.NET advertiser: Lunarpages ASP Web Hosting
Views: 1869 | Replies: 6
![]() |
•
•
Join Date: Jul 2005
Location: Dallas, TX
Posts: 481
Reputation:
Rep Power: 4
Solved Threads: 19
hopefully, this will get you going in the right direction.
var tb = document.getElementById('TEXTBOXID');
var tbVal = '';
if(tb !=null)
tbVal = tb.value;
window.location.href="fdfgd.com?tbVal="+tbVal;
Last edited by campkev : May 7th, 2007 at 3:08 pm.
Why do you even redirect using javascript?
Use code behind to redirect it.
In click event of the button:
Use code behind to redirect it.
In click event of the button:
Response.Redirect("~/MyPage.aspx?MyQuery=" & Me.MyTextBox.Text.Trim) Last edited by ManicCW : May 9th, 2007 at 2:15 am.
•
•
Join Date: Jul 2005
Location: Dallas, TX
Posts: 481
Reputation:
Rep Power: 4
Solved Threads: 19
•
•
•
•
Why do you even redirect using javascript?![]()
Use code behind to redirect it.
In click event of the button:
Response.Redirect("~/MyPage.aspx?MyQuery=" & Me.MyTextBox.Text.Trim)
why? Because it saves you a roundtrip and a server call, and is faster and more efficient.
•
•
•
•
Because it saves you a roundtrip and a server call, and is faster and more efficient.
Well OK, but I don't think he's gonna save much.
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb ASP.NET Marketplace
- i want to send labelbox value with redirect page (VB.NET)
- How to redirect a page in JSP (JSP)
- Internet Explorer 1 hour page refresh (Web Developers' Lounge)
- Golive need help on page redirect (Graphics and Multimedia)
- php mail form - need to redirect to new page (PHP)
Other Threads in the ASP.NET Forum
- Previous Thread: Asp.net-Database Insert problem
- Next Thread: How to Include framework with st up project


Linear Mode