How to establish connection of DataGridView Control to Stock Excha

Ask a Question related to ASP.NET Building Controls, Design and Development.

  1. #1

    Default How to establish connection of DataGridView Control to Stock Excha

    Dear Sir,

    I m develop a application in vb.net which update a live prices of stocks by
    a website named ([url]www.nseindia.com[/url])

    i m using datagridview control for this.

    Please give ur suggestion how can i bind my datagridview control to
    [url]www.nseindia.com[/url] website for live updation of stocks.

    --
    Jeet Disuja
    Delhi
    Jeet Disuja Guest

  2. Similar Questions and Discussions

    1. Timed out trying to establish connection
      cool! i will give that a try next time it happens. we try to restart the service through the services console on windows but even the service hangs...
    2. #39979 [NEW]: PGSQL_CONNECT_FORCE_NEW will causes next connect to establish a new connection
      From: solar dot c at gmx dot net Operating system: SLES 10 PHP version: 5.2.0 PHP Bug Type: PostgreSQL related Bug...
    3. The underlying connection as closed: Could not establish secure channel for SSL/TLS
      Ok, I try to communicate with a web service who receive xml message under a https using SSL. I have a directory with 240 XML files on my desktop....
    4. Establish a connection telnet in PHP on a UNIX server
      Hello, I wish to establish a connection in language PHP on a UNIX server by telnet. In fact, I would like : - Connect to server by sending IP...
    5. Client unable to establish connection
      Hi, I get the connection as following: set objCon = CreateObject("ADODB.Connection") objCon.ConnectionTimeout = 15 objCon.CursorLocation =...
  3. #2

    Default Re: How to establish connection of DataGridView Control to Stock Excha

    Jeet,

    I would pull the data into a DataSet which you can then cache with
    System.Web.Caching and then bind your GridView to the DataSet and bind
    to the appropriate fields.

    Even if you just cache for 30 seconds, it will help the application
    scale if many users are loading this page at the same time.

    In Visual Studio in a Website project, add a DataSet to your project.
    In this case, you may need to add the data columns to this dataset and
    then write the code to populate the DataRows so you can use the DataSet
    when binding to the GridView.

    Good luck!

    Brennan Stehling
    [url]http://brennan.offwhite.net/blog/[/url]

    Jeet Disuja wrote:
    > Dear Sir,
    >
    > I m develop a application in vb.net which update a live prices of stocks by
    > a website named ([url]www.nseindia.com[/url])
    >
    > i m using datagridview control for this.
    >
    > Please give ur suggestion how can i bind my datagridview control to
    > [url]www.nseindia.com[/url] website for live updation of stocks.
    >
    > --
    > Jeet Disuja
    > Delhi
    Brennan Stehling Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139