473,569 Members | 2,870 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Page redirect after submit button has been clicked

17 New Member
I have a form that I want to redirect to another page after clicking the submit button. It works well (please see the code below) except that it cancells my pop-up message, it goes the redirected page without showing the popup. Please help:


Expand|Select|Wrap|Line Numbers
  1. private void Submit_Click(object sender, System.EventArgs e)
  2. {
  3.    if( filMyFile.PostedFile.ContentLength != 0 )
  4.        {
  5.  
  6.     string strFilename;  
  7.                 strFilename = filMyFile.PostedFile.FileName;    
  8.                 strFilename =    System.IO.Path.GetFileName(strFilename);
  9.  
  10.     filMyFile.PostedFile.SaveAs(@"C:\Advert_images\"+strFilename);
  11.          }
  12.            else
  13.     {
  14.         // No file
  15.  
  16.  
  17.     }
  18.  
  19.  
  20. string status;
  21. string image_name;  
  22. image_name = filMyFile.PostedFile.FileName;
  23. image_name = System.IO.Path.GetFileName(image_name);
  24. status = "unverified";    
  25. SqlConnection con = new SqlConnection(ConfigurationSettings.AppSettings["ConnectionString"]);
  26. SqlCommand cmd =  new SqlCommand("Add_advert_new", con);
  27. cmd.CommandType = CommandType.StoredProcedure;
  28. con.Open();
  29. cmd.Parameters.Add("@Title",SqlDbType.VarChar);
  30. cmd.Parameters["@Title"].Value = txtTitle.Text;
  31. cmd.Parameters.Add("@Expiry_date",SqlDbType.DateTime);
  32. cmd.Parameters["@Expiry_date"].Value = Session["SelectedDate"].ToString();
  33. cmd.Parameters.Add("@Description",SqlDbType.Text );
  34. cmd.Parameters["@Description"].Value = txtDescr.Text;
  35. cmd.Parameters.Add("@Added_by",SqlDbType.VarChar );
  36. cmd.Parameters["@Added_by"].Value = Session["Name"].ToString();
  37. cmd.Parameters.Add("@Surname",SqlDbType.VarChar );
  38. cmd.Parameters["@Surname"].Value = Session["SName"].ToString();
  39. cmd.Parameters.Add("@status",SqlDbType.VarChar );
  40. cmd.Parameters["@status"].Value = status;
  41. cmd.Parameters.Add("@image_name",SqlDbType.VarChar );
  42. cmd.Parameters["@image_name"].Value = image_name;
  43.  
  44. cmd.ExecuteNonQuery();
  45. con.Close();
  46.  
  47. Response.Write(@"<script language='javascript'>alert('Advert has been uploaded but it will be verified by the webmaster fisrt before it can be displayed. Have a nice day!')</script>");
  48.  
  49.  
  50.  
  51. SmtpMail.SmtpServer = ConfigurationSettings.AppSettings["EmailServer"];
  52.             string strTo = "MicheleH@int.scm";
  53.             string strFrom = "webmaster@int.scm";
  54.  
  55.             string strSubject = "New advert to be verified";
  56.  
  57.             SmtpMail.Send(strFrom, strTo, strSubject,
  58.                 "A new advert has been loaded, please click on the link http://jhb-ds-web1/scmnet/doc/verifyadverts.aspx  to verify the advert.");
  59.  
  60.  
  61. Response.Redirect("classifieds_1.aspx");
  62. }
May 15 '09 #1
1 5906
Bassem
344 Contributor
The only reason I know that ASP.NET events take action first (higher priority), I maybe mistaken. To solve this problem you have to set both actions in the same priority so do the redirect using JavaScript instead of ASP.NET.
Expand|Select|Wrap|Line Numbers
  1.         Response.Write(@"<script language='javascript'>alert('Advert has been uploaded but it will be verified by the webmaster fisrt before it can be displayed. Have a nice day!')</script>");
  2.  
  3.         Response.Write(@"<script language='javascript'>window.location = 'http://www.google.com'</script>");
  4.  
It should works fine if not please tell me.
May 15 '09 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

3
3977
by: sentinel | last post by:
Hi, Wonder if anyone can help with this problem: I am using an app with several pages, using a session to track vars between the pages, and using an image map to re-direct back and forwards between the pages. The way I redirect is when the image map is clicked on, it posts to a page called 'control.php' which passes the POST vars to the
8
2551
by: Galina | last post by:
Hello I have 6 dependent list boxes on my ASP page:  Faculty;  Lecturer;  Course;  Course occurrence;  Group;  Week commencing date. When faculty is selected, lists of lecturers and courses are populated. When course is selected, lists of occurrences, groups and
2
3609
by: John Lau | last post by:
Hi, Is there documentation that talks about the page lifecycle, the lifecycle of controls on the page, and the rendering of inline code, in a single document? Thanks, John
6
2942
by: MooreSmnith | last post by:
When I navigate to the next page using Response.Rediect("MyNextPage.aspx") current page Page_Load event is called. What I may wrongly understood is that post back will happen whenever there is any server side event happens, resulting in Page_load event. Page_Load is also happening when I navigate to the next page. That means Page_load will...
0
5729
by: Oz | last post by:
Hi Using VS.NET 2003, Windows XP SP1, We have a page which has been developed using ASP.NET. On it, is a button which when clicked is supposed to add some data to a table. When the button is selected, it causes the ServerClick event to be called twice. Here's the code: You'll see that there are two grids on the page, and that the...
7
2025
by: Tom wilson | last post by:
I have created a very simple example that doesn't work. Form1 contains a textbox and a button: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Response.Redirect("login.aspx") End Sub Very simple. Forget what login.aspx does, it's just somewhere to redirect to.
6
4854
by: scottyman | last post by:
I can't make this script work properly. I've gone as far as I can with it and the rest is out of my ability. I can do some html editing but I'm lost in the Java world. The script at the bottom of the html page controls the form fields that are required. It doesn't function like it's supposed to and I can leave all the fields blank and it still...
5
5695
by: Simon Benson | last post by:
Probably a fairly simple problem but one that's been plaguing me for a couple of days... can anyone help? I have a classic ASP page with a number of text boxes which are updatable. For convenience I want to add 'tabs' at the top of the page (like a card index) as the data to be displayed is split into specific groups (client, company,...
5
2333
by: sumeetmakkar | last post by:
Hi all, I am a begineer and working on a project. Facing trouble linking a submit buuton to a page of my choice.Script i am using is: <SCRIPT language=JavaScript><!-- function validate(form) { for (var i=0; i <form.elements.length; i++) { if (form.elements.type == 'button') { if (!form.elements.clicked) { ...
0
7693
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7605
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7917
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8118
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7665
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7962
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6277
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5217
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
2105
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.