All Questions
21 questions
2
votes
1
answer
4k
views
Submitting data from a Bootstrap modal popup
I'd like my users to be able to submit data from a Bootstrap modal popup.
I'm wondering if anyone has experience doing this, and how you posted the data back to the server. Razor Pages have a lot of ...
0
votes
1
answer
2k
views
Modal is not working in my webserver but works in localhost. Why is that?
I am using asp.net webforms. I have button in top of the page and when user click the button I want popup a modal window.
This is the code that I used to implement it. The code works fine on my ...
0
votes
2
answers
260
views
Un able to post data to database using Bootstrap modal pop up in asp.net web forms
I am using asp.net web forms and i want tom post data from the modal pop up to the database, this is not working, however is just put textboxes in the body of the content page its saving data just ...
1
vote
0
answers
975
views
Bootstrap Modal Pop Up bind controls - Dropdownlist
I have an HTML table which loads data from the database. When I click on a row a modal pop fetches more content from the database with an option to edit a change on the selected row.
My predicament ...
0
votes
0
answers
215
views
Using bootstrap in ajax ConfirmButtonExtender
I need to have a confirm popup dialog with a button using bootstrap modal. I need to do something easy-to-use for my team, so I utilized ajax ConfirmButtonExtender and did something like this. but its ...
1
vote
1
answer
396
views
Getting weird display issue on bootstrap modal pop up and htmleditor
I am having a weird display issue when using ajax htmleditorextender inside the modal popup of bootstrap. whenever i remove the html editor, the display works fine. so, does bootstrap not compatible ...
0
votes
2
answers
680
views
Is there an issue with ScriptManager.RegisterStartupScript(...);
Im trying to get a Bootstrap modal to pop up, using the following code,
ScriptManager.RegisterStartupScript(this.Parent, this.GetType(), "Pop", "openMsgModal5();", true);
but it works some times, ...
0
votes
0
answers
73
views
Type-ahead drop down with ajax database lookup and comma-separated values?
I'd like a user to be able to type comma-separated aircode codes into a asp.net webform (VB.NET) text box like this:
Airport Codes: JFK,LAX,LHR
and as the user is typing, a type-ahead drop-down list ...
0
votes
1
answer
153
views
Reasons for Ajax Calls Not Being Made on Mobile?
I am running into an issue where it doesn't seem like Ajax calls are being made on mobile browsers. I am developing under the asp.net framework, which includes bootstrap. Curiously, if I switch to ...
2
votes
1
answer
4k
views
Modal not getting refresh with new data
I have a page where all data is loaded dynamically from a database and displayed in divs. On every div there is button named View. On click of this button I call a method: onclick="getdetails(this)". ...
1
vote
1
answer
353
views
ASP MVC : submit button is not working , when using AJAX.ActionLink
can you help on this please :
The submit button is not working in simple ASP MVC page after trying to open the bootstrap modal , using AJAX.ActionLink, but when I try top open directly (without ...
0
votes
1
answer
257
views
Bootgrid's search is not working
I'm trying to run the search of Bootgrid but when I enter data into the search field stays loading. The webmethod from server side return a list of DTO's that are automatically serialized , since the ...
0
votes
1
answer
2k
views
Upload file using ajax calls
I looked through multiple tutorials, but none of it helps.
I have page with 4 controls and with tab-panel bootstrap theme.
In code-behind of the page I want to save file that I uploaded:
[...
1
vote
0
answers
347
views
Writing WebMethod and Calling it Through AJAX
I have a problem, my problem is that I have a Bootstrap Modal that needs to display on the click of a linkbutton, alos when the link button is pressed, it will fire a method that fills a table in the ...
0
votes
1
answer
1k
views
Confirmation Dialog with Bootstrap/jQuery/ASP.MVC
I have a simple table with records and each of them has a btn with data-id attribute to run the confirmation dialog:
@foreach (var dog in Model)
{
<tr>
<...