Questions tagged [asynchronous-postback]

43 questions
1
vote
1 answer

ASP.NET Page_PreRender method

I'm trying to set a htmltablecell.innerHTML from code behind on Page_PreRender. It works fine the first time it's set. Hereafter I need to set the reference to a new value from a string (I have checked that the string value is changed), but it…
Millerbean
  • 295
  • 2
  • 8
  • 17
1
vote
1 answer

Show me a way to connect webservices asynchronously on Android

I do not use ksoap2 The callings must be asynchronously because other way honeycomb does not accept and it throws this exception http://developer.android.com/reference/android/os/NetworkOnMainThreadException.html I am deriving the codes from .NET…
Mustafa Güven
  • 15,526
  • 11
  • 63
  • 83
1
vote
0 answers

Where should I write my Kafka Adapter/Connector to read the data from the topic?

I am developing an application where I have several Consumers (an project which will consume a message and process it and after processing it send back to the topic where it comes from) An Getway project which has two REST method Post method, this…
1
vote
3 answers

How to keep whole page scroll position after asynchronous postback

i am using asp.net 4.0 iis 7.5 microsoft visual studio 2010 what i want is keep whole page (browser) scroll position (not a div or panel) when asynchronous postback happened (update panel) how can i do this actually i had a function which can keep…
Furkan Gözükara
  • 22,964
  • 77
  • 205
  • 342
1
vote
0 answers

Parse JSON list using angularJS(ng-repeat) only getting last row

I am creating a simple web API project and trying to access that API response using angularjs. In web API project I have following two classes. public partial class Employee : BaseEntity { public System.Guid EmpId { get; set; } public string…
1
vote
1 answer

Async trigger for an update panel refreshes entire page when triggering too much in too short of time

I have a search button tied to an update panel as a trigger like so:

Search: 

Matt
  • 5,547
  • 23
  • 82
  • 121
1
vote
0 answers

jquery validation along with update panel .. Why its refreshing whole page

Im using asp.net 4.0 webforms with jquery validation(bootstrap validator) and update panel(which adds a new dynamic user control). When I add a new dynamic user control the jquery validation is working just fine as expectd. But the problem is, the…
1
vote
1 answer

Invalid postback or callback argument (HiddenField and container Visible=false)

I've not found answers that matched my circumstances, so I'm posting an answered question hoping it will help others. I was getting the error Invalid postback or callback argument. Event validation is enabled using in configuration or <%@ …
Thierry_S
  • 1,526
  • 16
  • 25
1
vote
1 answer

How to achieve asyncronous testing using SOAPUI

(sorry about the length of my request) Current technology that I use to achieve asynchronous testing : 1. ssh into our server ex) svr.server.com (located elsewhere in a datacentre) 2. create a v.host myname.server.com 3. use some script to make curl…
1
vote
1 answer

Registering javascript on asynchronous postback

I have an asp.net button wrapped inside of an UpdatePanel, and when clicked it does an asynchronous postback and registers some javascript that shows a jquery dialog. protected void btnAddData(object sender, EventArgs e) { StringBuilder…
Jagd
  • 7,169
  • 22
  • 74
  • 107
0
votes
2 answers

Partial PostBack without AJAX

I want to silently check for Session existence without Posting back page by using AJAX Timer and AsyncPostBack Trigger. Now, I would like to know is there anyway to silently check whether ASP.NET C# if (Session["email"] = null) {…
Mad coder.
  • 2,175
  • 8
  • 38
  • 53
0
votes
0 answers

How can a particular thread be notified in Spring Boot

I have a REST service defined in Spring Boot, which exposes a synchronous REST API, to be invoked by a user from a Web based UI. The service is expected to provide a real time response. The service talks to an external endpoint in an asynchronous…
0
votes
2 answers

How to fetch data from database based on user input and display as JSON array using asynchronous POST in php

I have 1 php page which establishes connection to the database and fetches data from the database using JSON array (this code is working fine). index2.php
ssnone
  • 35
  • 3
  • 10
0
votes
1 answer

qt asynchronous completion for object member

I have a QObject class processing requests. So I could create a SLOT process(QString). I would like to know when the request was processed - i.e. receive a future of some kind that I can wait for. It should be possible to relate reults to…
xtofl
  • 40,723
  • 12
  • 105
  • 192