Jump to content

ZACKCORP

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by ZACKCORP

  1. ZACKCORP

    Site Width

    Hello : I am changing the width of our website, and i was looking for a suggestion. I know that most users (93%) have a monitor with a resolution of 1280 or larger. I am looking for a recommended size or standard size somewhere between 1200 px - 1366 px Any suggestion or recommendation and a quick explanation why would be greatly appreciated !! Thank you!
  2. ZACKCORP

    Button Help !

    Currently when clicked, my button on my webpage submits users information and redirects to another webpage. Ideally I would like the user to click the button, have the information still submit, but have the window close instead of redirect Below is a snippet of code from the button itself (.aspx) <asp:Button ID="Submit" runat="server" Text="Submit Tab Titles/Colors" OnClick="Submit_Click" ValidationGroup="ContactUs" /> <asp:Button ID="reset" OnClientClick="document.location.href=document.location.href;" Text="Reset" runat="server" /> Any help would be very appreciated ! Thank you
  3. ZACKCORP

    Button Function

    Hello ! I am working on a few updates to a webpage and having some trouble achieving my desired result. Goal : Online user enters info on webpage (popup), clicks button to submit info (sent via email) and on the same click to submit i would like the webpage (popup) to close. Currently whats happening : User enters info, clicks submit, page redirects to another product page. Below is a snippet of code from the redirect (.aspx.cs) EmailClient.Send(mailMessage); //MessageLabel.Text = _successMessage; //MessageLabel.ForeColor = System.Drawing.Color.Red; Response.Redirect("~/Human-Resource-Build-a-Folder-7281-Series-P2984.aspx"); Below is a snippet of code from the button itself (.aspx) <asp:Button ID="Submit" runat="server" Text="Submit Tab Titles/Colors" OnClick="Submit_Click" ValidationGroup="ContactUs" /> <asp:Button ID="reset" OnClientClick="document.location.href=document.location.href;" Text="Reset" runat="server" /> I have tried a few different edits i have found on google but have been unsuccessful. The redirect function can be eliminated completely, and move to more of a window.close function if possible or a submit & close window function. Any help would be appriciated ! If you need to see more code i can post it ! Thanks !!
×
×
  • Create New...