Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9019025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T04:40:38+00:00 2026-06-16T04:40:38+00:00

I have 2 asp pages. Feedback_Administration_Update.asp Feedback_Administration.asp My HTML form: <form ACTION=Feedback_Administration_Update.asp METHOD=POST NAME=form>

  • 0

I have 2 asp pages.

  • Feedback_Administration_Update.asp
  • Feedback_Administration.asp

My HTML form:

<form ACTION="Feedback_Administration_Update.asp" METHOD=POST NAME="form">
  <input type="button" value="Submit" onclick="javascript:Checkit();" name="btnSubmit">
  <input type="reset" value="Reset" onclick="javascript:document.location=location">
  <input type="button" value="Send Response to Requester" name="btnSubmit" onclick="javascript:Checkit();"/>
</form>

Code in Feedback_Administration_Update.asp file:

dim buttonPressed
buttonPressed=Request.Form("btnSubmit")
select case buttonPressed
    case "Submit"
        'update database code 
        Response.Redirect "feedback_administration.asp?ID=" & regEx.Replace((request.form("ID")), "''") & "&lstPages=" & Trim(Request("lstPages")) & "&view=" & Request("view")& "&strSuccess1=" &"Success"
    case "Send Response to Requester"
        'mail  task code 
End Select

I am not sure why they are not working on clicking any button.

When I click on submit the page, it should update the code, when I click on submit Send Response to Requester, it should send email.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T04:40:39+00:00Added an answer on June 16, 2026 at 4:40 am

    The value of button inputs is not sent to the server. You need to use ordinary submit buttons, and to have validation code you can cancel their onclick event:

    <input type="submit" value="Submit" onclick="return Checkit();" name="btnSubmit" />
    <input type="submit" value="Send Response to Requester" name="btnSubmit" onclick="return Checkit();" />
    

    To make it work, change your JavaScript function in two ways. First, don’t make it submit the form and second have it return true upon successful validation and false otherwise, e.g.:

    function Checkit() {
        //validate your stuff..
        if ([all is good]) {
            //don't submit the form here, the submit button will do that.
            return true;
        }
    
        //indicate that something was wrong, cancel form submission:
        return false;
    }
    

    Having this in place will cause Request.Form("btnSubmit") to hold the desired value.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 3 ASP.NET pages. Each has its own GetSearchResult method, which produces a
I have a .NET solution that works together with some classic ASP pages, as
I have an asp.net application containing pages that lie in multiple folder. I have
I have an ASP.NET application where i have more than 100 pages.In each pages
I have a ASP.NET web application which has more than 100 pages. Each page
I have an ASP.Net web site (ASPX and ASMX pages) with a single web.config
I have a asp.net mvc application. Some pages require SSL, is there a way
My Situation: I have 1 asp.net application with both aspx pages AND webservices I
I have an asp.net mvc website that returns a JSON result to certain pages
Lets say I have the following pages: # Include.asp <% Response.Write IsIncluded() & <br>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.