Click here to Skip to main content
15,911,531 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: RSS Feed Code Pin
minhpc_bk11-Jul-06 21:55
minhpc_bk11-Jul-06 21:55 
QuestionUsing Outlook in ASP.Net Pin
aaraaayen11-Jul-06 19:53
aaraaayen11-Jul-06 19:53 
AnswerRe: Using Outlook in ASP.Net Pin
Saifi Hasan11-Jul-06 23:03
Saifi Hasan11-Jul-06 23:03 
GeneralRe: Using Outlook in ASP.Net Pin
aaraaayen12-Jul-06 0:11
aaraaayen12-Jul-06 0:11 
QuestionRoles and logins? Pin
kbalias11-Jul-06 19:41
kbalias11-Jul-06 19:41 
AnswerRe: Roles and logins? Pin
kumarprabhakar7411-Jul-06 22:09
kumarprabhakar7411-Jul-06 22:09 
Questionreturning values form jagged arrays Pin
mehnazash11-Jul-06 19:00
mehnazash11-Jul-06 19:00 
AnswerRe: returning values form jagged arrays Pin
Guffa11-Jul-06 20:55
Guffa11-Jul-06 20:55 
A jagged array is just an array of arrays. To create one you first create the main array, then create each sub-array:

string[][] ss;
ss = new string[3][];
ss[0] = new string[] { "Some", "strings" };
ss[1] = new string[] { "Some", "more", "strings" };
ss[2] = new string[2];
ss[2][0] = "Individual";
ss[2][1] = "strings";


When you get the jagged array from the function, you shouldn't create an array first. That only means that you create an array that you will just throw away. Just declare the reference for the array:

string[][] dimen;
dimen = getDetails(webtype);


---
b { font-weight: normal; }

QuestionDoubt In Datalist Pin
Vipin Venugopal11-Jul-06 18:05
Vipin Venugopal11-Jul-06 18:05 
AnswerRe: Doubt In Datalist Pin
minhpc_bk11-Jul-06 21:58
minhpc_bk11-Jul-06 21:58 
QuestionArrgghh! How to disable vs automatically adding style settings for controls? Pin
Member 9611-Jul-06 12:03
Member 9611-Jul-06 12:03 
AnswerRe: Arrgghh! How to disable vs automatically adding style settings for controls? Pin
minhpc_bk11-Jul-06 22:01
minhpc_bk11-Jul-06 22:01 
GeneralRe: Arrgghh! How to disable vs automatically adding style settings for controls? Pin
Member 9612-Jul-06 5:18
Member 9612-Jul-06 5:18 
QuestionHow to send client side data to server side using any method(hidden field or AJAX) Pin
B Desai11-Jul-06 11:55
B Desai11-Jul-06 11:55 
AnswerRe: How to send client side data to server side using any method(hidden field or AJAX) Pin
minhpc_bk11-Jul-06 22:05
minhpc_bk11-Jul-06 22:05 
QuestionRegularExpressionValidator make me crazy! Pin
tranky11-Jul-06 10:19
tranky11-Jul-06 10:19 
AnswerRe: RegularExpressionValidator make me crazy! Pin
Dustin Metzgar11-Jul-06 10:35
Dustin Metzgar11-Jul-06 10:35 
AnswerRe: RegularExpressionValidator make me crazy! Pin
minhpc_bk11-Jul-06 11:58
minhpc_bk11-Jul-06 11:58 
QuestionAbsolute positioning ( CSS ) and updating problems in Visual Studio 2005 Pin
tedhill1311-Jul-06 10:14
tedhill1311-Jul-06 10:14 
AnswerRe: Absolute positioning ( CSS ) and updating problems in Visual Studio 2005 Pin
Guffa11-Jul-06 11:36
Guffa11-Jul-06 11:36 
GeneralRe: Absolute positioning ( CSS ) and updating problems in Visual Studio 2005 Pin
tedhill1312-Jul-06 7:47
tedhill1312-Jul-06 7:47 
GeneralRe: Absolute positioning ( CSS ) and updating problems in Visual Studio 2005 Pin
tedhill1312-Jul-06 8:09
tedhill1312-Jul-06 8:09 
AnswerRe: Absolute positioning ( CSS ) and updating problems in Visual Studio 2005 Pin
Guffa13-Jul-06 11:35
Guffa13-Jul-06 11:35 
QuestionUsing Asp.net Membership Provider in a shared hosting and Sql Server Pin
Odin Nordic11-Jul-06 9:44
Odin Nordic11-Jul-06 9:44 
AnswerRe: Using Asp.net Membership Provider in a shared hosting and Sql Server Pin
minhpc_bk11-Jul-06 11:47
minhpc_bk11-Jul-06 11:47 

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.