Click here to Skip to main content
15,917,176 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionIs there a way to check the eBay API Services offline? Pin
Rocky#7-Nov-07 2:55
Rocky#7-Nov-07 2:55 
AnswerRe: Is there a way to check the eBay API Services offline? Pin
Rocky#7-Nov-07 3:19
Rocky#7-Nov-07 3:19 
QuestionFile Upload to another server [modified] Pin
GaryWoodfine 7-Nov-07 1:57
professionalGaryWoodfine 7-Nov-07 1:57 
Questionhow to call the code behind function in source file of javascipt Pin
Sonia Gupta7-Nov-07 1:31
Sonia Gupta7-Nov-07 1:31 
AnswerRe: how to call the code behind function in source file of javascipt Pin
Pete O'Hanlon7-Nov-07 2:03
mvePete O'Hanlon7-Nov-07 2:03 
Questioncheck box list Pin
rameshdontagani7-Nov-07 1:30
rameshdontagani7-Nov-07 1:30 
AnswerRe: check box list Pin
J4amieC7-Nov-07 1:56
J4amieC7-Nov-07 1:56 
AnswerRe: check box list Pin
John-ph7-Nov-07 5:00
John-ph7-Nov-07 5:00 
Use the String.Spilit() method to change the string into One-Dimensional Array. Then iterate through the each Item of the CheckBoxList and check whether any Value in the string array matches with the Value of the ListItem. If yes mark that particular Item in the checkBoxList as selected/Checked.
string Value = "A,B,C";
ListItem lstItem = new ListItem(); 
string[] strArray = Value.Split(","); 
foreach ( lstItem in chklstItem.Items){  
  for (Int16 I = 0; I <= strArray.Length - 1; I++){  
     if (strArray(I) == lstItem.Value) { 
       lstItem.Selected = true;
     }
  }
}


 Regards
 - J O H N -



Questioncustom validator problem Pin
N a r e s h P a t e l7-Nov-07 1:10
N a r e s h P a t e l7-Nov-07 1:10 
AnswerRe: custom validator problem Pin
Michael Sync7-Nov-07 4:44
Michael Sync7-Nov-07 4:44 
Questionhyperlink control Pin
Sonia Gupta7-Nov-07 0:55
Sonia Gupta7-Nov-07 0:55 
AnswerRe: hyperlink control Pin
Christian Graus7-Nov-07 1:01
protectorChristian Graus7-Nov-07 1:01 
GeneralRe: hyperlink control [modified] Pin
Sonia Gupta7-Nov-07 1:17
Sonia Gupta7-Nov-07 1:17 
GeneralRe: hyperlink control Pin
Christian Graus7-Nov-07 1:25
protectorChristian Graus7-Nov-07 1:25 
GeneralRe: hyperlink control Pin
J4amieC7-Nov-07 1:49
J4amieC7-Nov-07 1:49 
GeneralRe: hyperlink control Pin
Sonia Gupta7-Nov-07 1:52
Sonia Gupta7-Nov-07 1:52 
GeneralRe: hyperlink control Pin
J4amieC7-Nov-07 1:58
J4amieC7-Nov-07 1:58 
GeneralRe: hyperlink control Pin
J4amieC7-Nov-07 1:51
J4amieC7-Nov-07 1:51 
QuestionHow to call server side method thru javascript Pin
kantipudi7-Nov-07 0:37
kantipudi7-Nov-07 0:37 
AnswerRe: How to call server side method thru javascript Pin
SHatchard7-Nov-07 0:46
SHatchard7-Nov-07 0:46 
GeneralRe: How to call server side method thru javascript Pin
Christian Graus7-Nov-07 1:03
protectorChristian Graus7-Nov-07 1:03 
GeneralRe: How to call server side method thru javascript Pin
SHatchard7-Nov-07 5:57
SHatchard7-Nov-07 5:57 
GeneralRe: How to call server side method thru javascript Pin
kantipudi7-Nov-07 4:10
kantipudi7-Nov-07 4:10 
Questionimp Pin
niki_nilu6-Nov-07 23:57
niki_nilu6-Nov-07 23:57 
AnswerRe: imp Pin
N a v a n e e t h7-Nov-07 0:04
N a v a n e e t h7-Nov-07 0:04 

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.