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 753527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:54:28+00:00 2026-05-14T14:54:28+00:00

I did see this post which lead me to the UI/API/1.8/Dialog I’m looking for

  • 0

I did see this post which lead me to the UI/API/1.8/Dialog

I’m looking for the most basic popup to submit form data.
Is this it? (does a popup submitting form data have to use ajax?)

Thank You.

EDIT – Sorry, to clarify, I mean that the popup contains the actual input fields and the Submit button as well.
I did see the jQuery example for this but it includes many .js files to implement. I’m looking for the “lightest” most basic popup to input to and send name/value paisr to the server.

  • 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-05-14T14:54:29+00:00Added an answer on May 14, 2026 at 2:54 pm

    Create an html form and use jquery to post/submit

    http://jquery.malsup.com/form/

    http://api.jquery.com/jQuery.post/

    edit:
    You can do it simply in one .js file.
    All you need to do is add an .htm form to your project add the input fields you want..
    Then reference those fields in your .js.

    for example, this is the html form:

    <table>
      <td><input type="text" maxlength="50" id="EditUserFName" style="width:220px;" /></td>
         </tr>  
     <tr>
          <td>Last Name:</td>
          <td><input type="text" maxlength="50" id="EditUserLName" style="width:220px;" /></td> 
     </tr>
    </table>
    

    your .js file…

    function CallService(method, jsonParameters, successCallback, errorCallback){
    if (errorCallback == undefined)
    {
        errorCallback = function(xhr)
        {
            if (xhr.status == 501)
            {
                alert(xhr.statusText);
            }
            else
            {
                alert("Unexpected Error");
            }
        }
    }
    
    $.ajax({
        type: "POST",
        url: method,
        data: jsonParameters,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: successCallback,
        error: errorCallback
    });}
    
    
    function SaveEvent(onSaveCallback){
    var fName = $("#EditUserFName").val()
    var lName = $("#EditUserLName").val(),
    
    CallService("ServiceLayer/Manager.asmx/SaveEvent", JSON.stringify(fName, lName), function()
    {       
        if (onSaveCallback != undefined)
        {
            onSaveCallback();
        }        
    }}
    

    that’s the basics of how to do it.. obviously you need some validation and some other functions

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

Sidebar

Related Questions

Looking for a proven to work algorithm for production. Did see this example but
First let me say that I did see this article: How to remove AspxAutoDetectCookieSupport
I did not find a post which ask for the same restriction as me.
So in order accomplish what I asked in this post I did the following:
This exercise was a bit tricky. Figured I'd post my solution to see if
I am looking to make a custom window which would look something like this
I have been playing with ASP.NET Web API. I am looking to see can
Earlier I had a problem when an inner anonymous class did not see a
Did you used Dynamic websites before? you see its a good way for making
Did anyone tried to customize the window in which the quicktime is playing video?

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.