Click here to Skip to main content
15,887,083 members
Home / Discussions / C#
   

C#

 
QuestionTrouble with making multiple httpWebRequest "Get"'s to a webservice in a short time Pin
nineismine30-Jun-09 20:39
nineismine30-Jun-09 20:39 
AnswerRe: Trouble with making multiple httpWebRequest "Get"'s to a webservice in a short time Pin
Philip.F30-Jun-09 20:49
Philip.F30-Jun-09 20:49 
GeneralRe: Trouble with making multiple httpWebRequest "Get"'s to a webservice in a short time Pin
kstls30-Jun-09 22:50
kstls30-Jun-09 22:50 
GeneralRe: Trouble with making multiple httpWebRequest "Get"'s to a webservice in a short time Pin
nineismine1-Jul-09 2:29
nineismine1-Jul-09 2:29 
GeneralRe: Trouble with making multiple httpWebRequest "Get"'s to a webservice in a short time Pin
Philip.F1-Jul-09 3:18
Philip.F1-Jul-09 3:18 
QuestionData Entry in GridView Control Pin
Mads11530-Jun-09 20:08
Mads11530-Jun-09 20:08 
AnswerRe: Data Entry in GridView Control Pin
Chetan Patel30-Jun-09 20:15
Chetan Patel30-Jun-09 20:15 
AnswerRe: Data Entry in GridView Control Pin
Niladri_Biswas30-Jun-09 20:23
Niladri_Biswas30-Jun-09 20:23 
Do you mean you want to bind the grid to some datasource?

If this is the case, then get the source of the data and bind to the grid.
e.g.

Say I have a datatable(dtBilling) as my datasource and my gridview name is dgBilling.

DataTable dtBilling = new DataTable();
            dtBilling.Columns.Add("Product Name");
            dtBilling.Columns.Add("Price");
            dtBilling.Columns.Add("Unit Price");
            dtBilling.Columns.Add("Total");

            dtBilling.Rows.Add("Prod1", "100", "2.50", "250");
            dtBilling.Rows.Add("Prod1", "200", "3.50", "3250");
            dtBilling.Rows.Add("Prod1", "300", "4.50", "450");
            dtBilling.Rows.Add("Prod1", "400", "5.50", "550");

            if (dtBilling.Rows.Count > 0)
            {
                dgBilling.DataSource = dtBilling;
            }


Hope this helps.

But to be honest, the question does not seem to be very clear to me.

Please let me know placidly, if you are looking a solution for this kind of problem or different!

Smile | :)

Niladri Biswas

QuestionError occure while creating Object of COM dll Pin
Chetan Patel30-Jun-09 19:55
Chetan Patel30-Jun-09 19:55 
QuestionBest place to start? Pin
richforall30-Jun-09 18:57
richforall30-Jun-09 18:57 
AnswerRe: Best place to start? Pin
Niladri_Biswas30-Jun-09 20:34
Niladri_Biswas30-Jun-09 20:34 
AnswerRe: Best place to start? Pin
Blikkies30-Jun-09 22:41
professionalBlikkies30-Jun-09 22:41 
GeneralRe: Best place to start? Pin
PIEBALDconsult1-Jul-09 5:21
mvePIEBALDconsult1-Jul-09 5:21 
Questiondisplay a form inside a web browser Pin
tanweer30-Jun-09 17:28
tanweer30-Jun-09 17:28 
AnswerRe: display a form inside a web browser Pin
Christian Graus30-Jun-09 18:33
protectorChristian Graus30-Jun-09 18:33 
AnswerRe: display a form inside a web browser Pin
dojohansen30-Jun-09 23:31
dojohansen30-Jun-09 23:31 
Questionfree faling picture box Pin
tanweer30-Jun-09 17:16
tanweer30-Jun-09 17:16 
AnswerRe: free faling picture box Pin
Christian Graus30-Jun-09 18:33
protectorChristian Graus30-Jun-09 18:33 
QuestionReplace windows loging with own loging application problem... Pin
S K Y30-Jun-09 16:55
S K Y30-Jun-09 16:55 
AnswerRe: Replace windows loging with own loging application problem... Pin
Christian Graus30-Jun-09 18:38
protectorChristian Graus30-Jun-09 18:38 
GeneralRe: Replace windows loging with own loging application problem... Pin
S K Y30-Jun-09 19:21
S K Y30-Jun-09 19:21 
Questionget paramter from web service, using win app..? Pin
Mtyb30-Jun-09 16:40
Mtyb30-Jun-09 16:40 
GeneralALEX POST IT HERE PLEASE!!!! Pin
robinbriggs30-Jun-09 15:30
robinbriggs30-Jun-09 15:30 
GeneralRe: ALEX POST IT HERE PLEASE!!!! Pin
Christian Graus30-Jun-09 18:35
protectorChristian Graus30-Jun-09 18:35 
GeneralRe: ALEX POST IT HERE PLEASE!!!! Pin
dan!sh 30-Jun-09 19:24
professional dan!sh 30-Jun-09 19:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.