Click here to Skip to main content
16,006,341 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Alert Function In asp.net Pin
J4amieC27-Mar-08 0:17
J4amieC27-Mar-08 0:17 
GeneralRe: Alert Function In asp.net Pin
Christian Graus27-Mar-08 10:21
protectorChristian Graus27-Mar-08 10:21 
GeneralRe: Alert Function In asp.net Pin
~V~27-Mar-08 20:07
~V~27-Mar-08 20:07 
GeneralRe: Alert Function In asp.net Pin
Jeremy Falcon27-Mar-08 8:52
professionalJeremy Falcon27-Mar-08 8:52 
GeneralRe: Alert Function In asp.net Pin
J4amieC27-Mar-08 0:21
J4amieC27-Mar-08 0:21 
QuestionAbout WEB CAMARA in asp.net Pin
viralsarvaiya26-Mar-08 21:10
viralsarvaiya26-Mar-08 21:10 
GeneralRe: About WEB CAMARA in asp.net Pin
Christian Graus26-Mar-08 22:03
protectorChristian Graus26-Mar-08 22:03 
Generalcopy table from dataset to Dataview Pin
chakran26-Mar-08 20:16
chakran26-Mar-08 20:16 
Hi,
my dataset dsRates contains all country list(notin sorted order). I copied dataset table to Dataview. and I used dvRates.Sort property. when I debug the code dvRates showing the records in sorted order, but while reading its taking from original table(Dataset table).
Ex: dsRates table contains one "Country" column. the records are
A1
B1
A2
A3....

when I used Sort property of Dataview, the records are in sorted order.when I try to reading records it showing B1 instead of A2.

DataView dvRates = new DataView();
dvRates = dsRates.Tables[0].DefaultView;
dvRates.Sort = "Contry";

//showing 2nd record as B1. actully it shold show A2
for (i = 0; i < dvRates.Table.Rows.Count; i++) {
string country = dvRates.Table.Rows[i]["Country"].ToString();
}

Can anyone help me..

Thanks
AnswerRe: copy table from dataset to Dataview Pin
Vijayitsb26-Mar-08 20:59
Vijayitsb26-Mar-08 20:59 
QuestionConnecting to Web Server on LAN Pin
ptr2void26-Mar-08 20:06
ptr2void26-Mar-08 20:06 
GeneralRe: Connecting to Web Server on LAN Pin
ptr2void26-Mar-08 20:49
ptr2void26-Mar-08 20:49 
GeneralRe: Connecting to Web Server on LAN Pin
ptr2void26-Mar-08 21:11
ptr2void26-Mar-08 21:11 
GeneralRe: Connecting to Web Server on LAN Pin
rajanandal26-Mar-08 21:32
rajanandal26-Mar-08 21:32 
GeneralRe: Connecting to Web Server on LAN Pin
ptr2void26-Mar-08 22:07
ptr2void26-Mar-08 22:07 
GeneralRe: Connecting to Web Server on LAN Pin
rajanandal26-Mar-08 22:10
rajanandal26-Mar-08 22:10 
GeneralRe: Connecting to Web Server on LAN Pin
ptr2void26-Mar-08 22:17
ptr2void26-Mar-08 22:17 
Questionhow to add dll in to toolbox? Pin
bigphish26-Mar-08 19:27
bigphish26-Mar-08 19:27 
AnswerRe: how to add dll in to toolbox? Pin
Christian Graus26-Mar-08 19:57
protectorChristian Graus26-Mar-08 19:57 
GeneralRe: how to add dll in to toolbox? Pin
bigphish26-Mar-08 20:25
bigphish26-Mar-08 20:25 
GeneralRe: how to add dll in to toolbox? Pin
Christian Graus26-Mar-08 20:31
protectorChristian Graus26-Mar-08 20:31 
GeneralRe: how to add dll in to toolbox? Pin
Sandeep Akhare26-Mar-08 23:05
Sandeep Akhare26-Mar-08 23:05 
GeneralASp.NET login control - automate login Pin
Christian Graus26-Mar-08 13:29
protectorChristian Graus26-Mar-08 13:29 
GeneralRe: ASp.NET login control - automate login Pin
Not Active26-Mar-08 13:33
mentorNot Active26-Mar-08 13:33 
GeneralRe: ASp.NET login control - automate login Pin
Christian Graus26-Mar-08 13:42
protectorChristian Graus26-Mar-08 13:42 
GeneralRe: ASp.NET login control - automate login Pin
Christian Graus26-Mar-08 14:01
protectorChristian Graus26-Mar-08 14:01 

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.