Search results for query: *

  1. H

    Still Unable To Get UpdatePanel control to function properly

    I understand what you're saying, and since I made the first post below I have changed my code a bit. Now inside the update panel I'm using a textbox control which is supposed to fire a "TextChanged" event which "Occurs when the content of the text box changes between posts to the server." to...
  2. H

    Still Unable To Get UpdatePanel control to function properly

    In the web App. that I'm developing I have several content pages of which only one of them is using an UpdatePanel control. My ScriptManager control is on the master page of the app. but after some reading I'm not sure its in the right place. I've placed it within the FORM tag underneath the...
  3. H

    UpdatePanel - Updates not working

    I'm trying to make an update panel on a Web App. page show updates to a label control within the same panel and also using an invisible button in the panel to trigger the panel updates with its Click event. Here is my complete update panel code from my Web App. page: <asp:UpdatePanel...
  4. H

    Send local file to rest api upload endpoint

    I'm trying to send a local file to an upload endpoint of an external rest api. I've never done this before, so how do I send a local file (what kind of format) to the endpoint? Just as a file path to the local file, a string or some other way? The local file is a .csv / Excel file, how do I set...
  5. H

    Json.net - JsonConvert.DeserializeObject

    I'm using JSON.Net and am trying to deserialize a json response object into a predefined object type. When I do the convert I'm not seeing any exceptions, but the conversion seems to be failing somewhere nonetheless, because I can't see what's in the target object after the deserialization is...
  6. H

    Web API Consumption

    I think the problem I'm having is because I'm not sending the "content-type" header, and its defaulting to "text/html; charset=utf-8", when it should be set to "application/json; utf-8". I'm trying to use the HttpClient with the GetStringAsync(<url here>) method, but I haven't found any good...
  7. H

    Web API Consumption

    I'm building a new web application tool that is supposed to send requests to an API and then bring the responses in JSON format. I believe I'm formatting the request properly, but I keep getting 404 responses like this: StatusCode: 404, ReasonPhrase: 'Not Found', Version: 1.1, Content...
  8. H

    Question convert json TO c-sharp object(s)

    Thanks for the helpful suggestion. I had tried previously to install it, but when I tried it, it was with an older version of NuGet. Once I updated NuGet then installing Json.NET package was easy and worked fine then.
  9. H

    Question convert json TO c-sharp object(s)

    I working on a test console application which will send a request to a REST API and bring the results back. I know it brings back results in JSON at least and possibly some other formats. This is a test project which I'm playing with just to get familiar with all of the json to C# object...
  10. H

    Question How to correctly setup buttons, for paging through a datatable on a web form?

    I have a web form on which I have an a panel control of static buttons (I want the text of the buttons to change based on the current page range being displayed.), for paging through a data table. Immediately underneath the panel I have an asp table control which I'm building rows and cells into...
  11. H

    Question ListView DataPager Button Events / Control Binding Issue?

    First Let me say I'm relatively new to the latest version of C# and Visual Studio Ultimate 2013, having only picked it up a couple of months ago. I have a small web application with several web form pages on it. Two of the web form pages have listviews on them, with DataPagers included in the...
Back
Top Bottom