Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

michael_jhons

@michael_jhons
About
Posts
86
Topics
41
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • optimize gridview paging
    M michael_jhons

    thank you for your answer, however this method cannot be applied to my project since i can't control the ammount of data record retrieved by the API again the problem is when i postback the page, i have to retrieve again all the data, i have no problem to load at the first time thank you again for your concern

    C# wpf wcf json help code-review

  • optimize gridview paging
    M michael_jhons

    hello everybody, here's what i'm doing: 1. i'm retreiving data through API(atom format), 2. i'm storing all retreived data in a datatable, 3. i'm binding this datatable to a gridview the porblem is that these APIs are feeding thousands of records so each time i'm paging i have to go on with all the above steps (1, 2 and 3) this procedure is taking a lot of time i believe there is a faster way to do that , Apreciating any help, Thank you in advance

    C# wpf wcf json help code-review

  • Hashtable within Hashtable
    M michael_jhons

    thank you Abhinav for your help, i did apply what you've suggested withoout any luck, i just want to highlight that jsonResult["reviews"].GetType()= Arraylist what should i set the the type of keys and values in Dictionary Dictionary ? thank you again for your concern

    C# json help question

  • Hashtable within Hashtable
    M michael_jhons

    hello everybody, i'm retreiving data(API) with JSON format and i'm parsing it inside a hashtable, it seems like some specific keys have a value= hashtable(or arraylist!) below is how i'm extractin the the first layer value

    foreach (object objResult in jsonResults)
    {
    Hashtable jsonResult = (Hashtable)objResult;
    dt.Rows.Add(jsonResult["city"].ToString(), jsonResult["reviews"].ToString(), jsonResult["avg_rating"].ToString(), jsonResult["rating_img_url"].ToString());
    }

    the problem is where the values are equal to arraylist i'm not able to extract them Is there any way to extract the second layer keys and values? (btw i'm very new to hashtables and arraylists) Thank you in advance

    C# json help question

  • C# safe deployment (FOXPRO)
    M michael_jhons

    hello all, I'm working on an application developped under FOXPRO, the problem is that the deployment procedure is so vulnerable, so that once installed, anyone could copy all its files and past them to another computer and the application will just work fine. 1. would you please advise what it could be done in order to grantee a safe deployment that it can't be duplicated 2. does the suggested process could be developed using C# knowing that the application is developed under FOXPRO Thank you so much for your usual support

    C# csharp sysadmin help

  • webspider/crawler extract Javascript related info
    M michael_jhons

    Hello everybody, I'm trying to develop a WebSpider that retrieves data related to "Sports" from twitter, Facebook and other sites/blogs, to display it all in my page. I just need to retrieve the information displayed on that page, but the problem I’m facing is that when I’m reading the twitter page, there is only a JavaScript code that display these data and not the data itself Is there any possibility to extract this information so I can log it in a Database for example? Thank you for your usual help

    C# help javascript database tutorial question

  • MAC address
    M michael_jhons

    Hi everybody, i'm facing a simple conflict between me and my manager, i was developing a procedure where some consultant need to send his laptop's MAC address via mail before his arrival to our company so the IT department could make the necessary configuration before his arrival the answer of my manager was that is not possible since such information (MAC address) This type of info usually are not available before the person is on-site (in the company)and i need to make sure that any process assumes that we are on earth and live in the real world!!!! i'm not an IT man but in know that using IPCONFIG /ALL we retreive it AM i right guys ? please advise if there is anything unseen for me ! apreciating your help

    IT & Infrastructure help question workspace

  • Control Customization via XML
    M michael_jhons

    Dear Estys, i just finished applying the method you provided, i faced a little problem, it's while i'm loading,i'm also populating the radioButtonlist from a datatble, the RadiobuttonList is created using the xslt file,so an error is shoing to all using controls in the Default.aspx.cs file is "the name 'control's ID' does not exist in the current context" so how could i use controls in this context? thank you again for your help.

    .NET (Core and Framework) xml architecture help tutorial question

  • Control Customization via XML
    M michael_jhons

    requesters only mentioned XML, but of course i can use any methode that lead to a successful result thanks

    .NET (Core and Framework) xml architecture help tutorial question

  • Control Customization via XML
    M michael_jhons

    thank you for your help, i'll give it a try

    .NET (Core and Framework) xml architecture help tutorial question

  • Control Customization via XML
    M michael_jhons

    thank you for your answer, is there any other way without using the XSLT file ?

    .NET (Core and Framework) xml architecture help tutorial question

  • Control Customization via XML
    M michael_jhons

    Hi everybody, i'm currently developping a website using 3 tier architecture, i've been requested that the controls of the presentation layer should be loaded and customized via an XML file. To behonest i'm new to XML and I made some researches and i didn't succeeded. Could anyone help me with this either by providing an example or some document? shold i use teh web.config file? thank you in advance for your usual help

    .NET (Core and Framework) xml architecture help tutorial question

  • Advice
    M michael_jhons

    hello everybody, i'm going to begin a project that need the following : Requirement Analysis & Definition --> 5 days System & Software Design --> 18 days Implementation & Unit Testing --> 77 days Integration & System Testing --> undetermined Operations & Maintenance --> undetermined could anybody advice or give me an estimation or hint how much should i ask as for a logical price. thank you so much for your usual coordination

    Sales / Marketing design testing beta-testing

  • Advice
    M michael_jhons

    hello everybody, i'm going to begin a project that need the following : Requirement Analysis & Definition --> 5 days System & Software Design --> 18 days Implementation & Unit Testing --> 77 days Integration & System Testing --> undetermined Operations & Maintenance --> undetermined could anybody advice or give me an estimation or hint how much should i ask as for a logical price. thank you so much for your usual coordination

    C# design testing beta-testing

  • javascript to export to excel
    M michael_jhons

    i'm using this function to export HTML table to excel: function ExportTable() { var x=tbRprt.rows; var xls = new ActiveXObject("Excel.Application"); xls.visible = true; xls.Workbooks.Add; for (i = 0; i < x.length; i++) { var y = x[i].cells; for (j = 0; j < y.length; j++) { xls.Cells( i+1, j+1).Value = y[j].innerText; } } } i have a table including many tables, this function i dealing with te sub tables as cells <table> <tr> <td> <table> <tr><td></td> <td></td></tr> . . . </table></td></tr></table> when i dispaly it in excel file, it represent the rows of the embeded tables as cells How could i represent all included tables correctly thank you in advance for your help and best regards

    Web Development javascript html help

  • ASP beginer
    M michael_jhons

    hello i'm just begining to learn asp,since two years i'm working on asp.net, when i create an ASP page on dreaweaver how to browse it just to see it. in visual studio i just run or debug the page. i know it's sound naive and i'm sorry for that, but it is just the first step thank you and best regards

    Web Development csharp asp-net visual-studio debugging tutorial

  • read XML threw API
    M michael_jhons

    thank you so much

    ASP.NET xml json help tutorial

  • read XML threw API
    M michael_jhons

    dear surrender in the code above where could i specify the parameters value??

    ASP.NET xml json help tutorial

  • read XML threw API
    M michael_jhons

    ok, thank you for your time

    ASP.NET xml json help tutorial

  • read XML threw API
    M michael_jhons

    :) the page which contain the url is sent by another system another provider i don't have any control on it simply i get a xml page which i want to retreivem the data regards

    ASP.NET xml json help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups