I have a form which inserts data in DB on Submit button click but the problem is when client click the button multiple times its sends multiple create requests means multiple button click events for the same time of same data, which must not be.
I tried to disable the button when client click the Submit button first time but after this it does not call server click event handler or not fire the server click event once it got disabled.
i have a recruitment section in an admin system for a website, and now my client wants the ability to select multiple applications at the same time, via a tick box, and attach them to an email.. For example, look at this image: [URL] You will see a list of applicants for jobs, i was thinking of having a checkbox which the user can select and then hit a button which opens an email window with all the Curriculum Vitae's (Resime's) attached.. These are already on the server, specific to users, but is what i am trying to do possible?? So selecting multiple applications and attaching the details, which is a word document to an email?? If so, can you show me an example of similar methods that have been done or even something that i can work from?
Say I have 2 UpdatePanels on the page and each UpdatePanel has a one server Button each. When I click on the first button and then the second button and look in Firebug, I see that the 2nd async postback is not triggered until the first one completes.
Is this working as expected? My understanding was with AJAX postbacks, the event handlers for the buttons trigger simultaneously.
here i have two textboxes and two dropdown list boxes.. this is the fiedlset user is going to enter their information..
</fieldset>
on the same page i have couple of other Fieldset with there studentInfo with twotextboxes and two dropdownlistboxes smililarly above Fieldset..this data dynamically generated from database for each users.
so all here my intension is insted of updating each and every Fieldset i made one generic fieldset to update all other Fieldsets information
on the Generic view I have this BeginForm
<% using (Html.BeginForm("Update", "home", FormMethod.Post, new { @id="studentid"})) { %>
my site admins want to log in as a client and nose around the client's area. When the admin returns to the admin area, they don't want to have to log in again. The converse is also true - someone using a client account might want to log into the admin area but not want to re-log in if they return to the client area.So basically what I'm looking for is a way for a user to have multiple identities at the same time. I think this is fairly straight forward to do using ASP.net 1.1 techniques - you just manually fudge the different credentials into the security ticket. But how might I do this using Membership and the RoleManager.The RoleManager for example only gets the roles for one user at a time. And the Login web control will only log on one user at a time!
good way to upload multiple files at the same time? I currently am able to upload one file at a time, but would like to be able to select them all and then upload. Right now i am using asp: FileUpload control to upload the files, I know I could just use several of these and then loop them in the code behind to upload, but the pages I am working on have different amount of images to upload.
I have worked on 2 so far, and the first page I had to upload 12 items, while the second page I had 9 to upload. So i don't want to have a ton of these on the screen. Is there anyway i could use a ListBox or something to load them all in the listbox then loop through the box? I would prefer to have a listbox or textbox even, then have like 12 FileUpload's on the page.
i need a form in such a manner that if uesr select 1 it create 1 small form/panel on web page if select 2 it will create 2 small form/panel on web page etc etc
[code]....
then i need to store record thenin database when user fill run time form/panel etc etc
Single record in Customer can have multiple CustomerPhone records. As you see in the image below, Phone and Fax resides in CustomerPhone table whereas the rest of the fields resides in Customer table. If user want to edits a customer record, obviously i will have to update the record in Customer table and at least two records from CustomerPhone (Phone and Fax).
I could write two update statements, one Update customerPhone and the second update Customer table. Is there a better solution?
When the user clicks submit I want to insert the data into database table multiple time (depend on one field of data) in one go. Of course primary key will be different
I am using Oracle and here is my example code it maybe help you to understand what is my problem:
(I bolded important part of code and sorry for bothering so many code and image but THANK YOU VERY MUCH!)
Following code is in Controller: [Code]....
Following code is in Facade:public void FreeTicketAdd(FreeTicket _FreeTicket, decimal _UserId)
I'm using .Net 2008 and Oracle 10g as my database. The problem I'm getting is after deploying the application in IIS, when multiple users access the same page at a time i'm getting the error. Can't get the output.
Note: Both the users accessing the same page, same menu at a time.
How to extend the session time. There are many form in my application like parent and child forms. So how can I make pop up to appear when session times out and the pop up should appear on the form where the user is currently in, when popup comes I have to disable all forms like(they should be transparent (i.e) user should NOT be able to edit them). how can i extend the session when I click on the OK button.
I wish my user to have option of selecting multle image at once and upload them to site form there hard drive, somehing like on copy paste, and not to have 5 upload buttons and to look for each photo separatly.
I have thi esolved in zip file where user can zip in let say 453 photo and upload them to internet in single file where they are automaticli unziped but it would be much better to have option of selecting numerus photo i windows explorer and upload thm with single click
ow can I display multiple validation summaries at one time? I currently have three different validation groups on a page for different sections of the page. Basically, the first section should be validated by one validation group, the second section should validate both the the first and section section and the third should validate all three.I've got the following javascript which validates properly, but only the last validation summary is visible, the first two don't appear (but the red asterisks next to the controls do appear).
function ValidateSection3() { var validated = Page_ClientValidate("vgSection1"); if (validated) {
What's the best way to programatically (at run-time) open another another page, independent from the first page, and with its own controls?
My first page has a list of users. I want each to be a linkbutton that when pressed opens up a separate page for the selected user, showing the user's particular information, with controls to edit it, like textboxes, checkboxes, etc.
we have this web service that sends JSON code to an iPhone application.
Each time the app makes a request, the web serice accesses the database, grabs corresponding xml data, transforms it to JSON code and then sends it back to the app.
the xml data gets updated approximately every minute, you can assimiliate this process with a sport app of which you can watch live game commentaries.
Now the iPhone app is going to implement a refresh button which a user can proactivly hit it against the service to fetch the latest data.
So we need to implement something that is capable of handling multiple requests that could occur at the same time or in a very short period of time.