|
|
 |
| ASP.NET 3.5 Basics If you are new to ASP or ASP.NET programming with version 3.5, this is the forum to begin asking questions. Please also see the Visual Web Developer 2008 forum. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 3.5 Basics section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

August 19th, 2009, 09:44 PM
|
|
Authorized User
|
|
Join Date: Jun 2009
Posts: 30
Thanks: 13
Thanked 0 Times in 0 Posts
|
|
dialog box
hi...how to add a dialog box,after i add one record into postjob table and link it to main page(menu.aspx) .....the dialog box's message "Added One Record!" and there is only OK command,after i click OK it should link to menu.aspx......thank you
|

August 20th, 2009, 01:40 PM
|
|
Friend of Wrox
|
|
Join Date: Nov 2007
Location: Central Florida, USA.
Posts: 199
Thanks: 2
Thanked 15 Times in 15 Posts
|
|
Something like...
You could do something like this...
Code:
Dim Script As String = "<script language='javascript' type='text/javascript'>"
Script &= "alert('Added One Record!');"
Script &= "window.location.href = 'main.aspx';"
Script &= "<" & "/script>"
Page.ClientScript.RegisterClientScriptBlock(Page.GetType, "Redirect", Script, False)
__________________
Jason Hall
|
|
The Following User Says Thank You to alliancejhall For This Useful Post:
|
|

August 28th, 2009, 01:15 AM
|
|
Registered User
|
|
Join Date: Aug 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
need help
I have a dialog box type object that displays fine and hides when I hit the button, but my problem is that I don't want to add an event listener for the dialog click. Instead, there is a function waiting on the answer for the yes or no. I notice AS2 has sleep(), which I could have used here. It looks like it is gone. Is there an equivalent way to keep delaying until the dialog is clicked?
Many thanks for any input!
drug rehab
|

October 22nd, 2009, 06:47 AM
|
|
Authorized User
|
|
Join Date: May 2006
Location: , , United Kingdom.
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |