Click here to Skip to main content
15,867,488 members
Home / Discussions / C#
   

C#

 
Questiondatagridview question Pin
akram300220-Oct-09 2:27
akram300220-Oct-09 2:27 
AnswerRe: datagridview question Pin
Calla20-Oct-09 2:36
Calla20-Oct-09 2:36 
GeneralRe: datagridview question Pin
akram300220-Oct-09 2:40
akram300220-Oct-09 2:40 
AnswerRe: datagridview question Pin
stancrm20-Oct-09 2:39
stancrm20-Oct-09 2:39 
GeneralRe: datagridview question Pin
akram300220-Oct-09 2:44
akram300220-Oct-09 2:44 
GeneralRe: datagridview question Pin
akram300220-Oct-09 3:31
akram300220-Oct-09 3:31 
GeneralRe: datagridview question Pin
jaypatel51220-Oct-09 7:06
jaypatel51220-Oct-09 7:06 
QuestionCreation of a site collection in MOSS 2007 using C#.NET 2008 [modified] Pin
mgr_2k720-Oct-09 2:07
mgr_2k720-Oct-09 2:07 
I created a site collection in a Web Application using the following code snippet in a Console Application:
============================================================================
SPWebApplication webApp = SPWebApplication.Lookup(new Uri("http://devportal.domain.local"));
webApp.Sites.Add(
"/", // site URL
"testsite", // site title
"Test Site Description", // site description
1033, // site LCID that represents the language, e.g. 1033 = en-US
"STS#0", // site template, e.g. STS#0 = Team Site
@"localdomain\my_alias", // site owner login
"Test Owner", // site owner name
"abc@def.com"); // email
Console.WriteLine("Site Created");
Console.ReadLine();
============================================================================
However, I am not able to view the same? How should I view it?

modified on Tuesday, October 20, 2009 8:33 AM

AnswerRe: Creation of a site collection in MOSS 2007 using C#.NET 2008 Pin
Richard MacCutchan20-Oct-09 3:16
mveRichard MacCutchan20-Oct-09 3:16 
AnswerMy vote of 1 Pin
Keith Barrow20-Oct-09 3:22
professionalKeith Barrow20-Oct-09 3:22 
QuestionHow to merge 2 multidimensional Array into Single one in C# Pin
basantakumar20-Oct-09 1:44
basantakumar20-Oct-09 1:44 
AnswerRe: How to merge 2 multidimensional Array into Single one in C# Pin
Jacobb Michael20-Oct-09 2:06
Jacobb Michael20-Oct-09 2:06 
AnswerRe: How to merge 2 multidimensional Array into Single one in C# Pin
Richard MacCutchan20-Oct-09 4:29
mveRichard MacCutchan20-Oct-09 4:29 
GeneralRe: How to merge 2 multidimensional Array into Single one in C# Pin
basantakumar26-Oct-09 4:38
basantakumar26-Oct-09 4:38 
GeneralRe: How to merge 2 multidimensional Array into Single one in C# Pin
Kasim_Husaini14-Feb-11 0:25
Kasim_Husaini14-Feb-11 0:25 
QuestionGenerating code when works in design mode. Pin
hdv21220-Oct-09 1:25
hdv21220-Oct-09 1:25 
AnswerRe: Generating code when works in design mode. Pin
Jacobb Michael20-Oct-09 1:33
Jacobb Michael20-Oct-09 1:33 
GeneralRe: Generating code when works in design mode. Pin
hdv21220-Oct-09 4:27
hdv21220-Oct-09 4:27 
GeneralRe: Generating code when works in design mode. Pin
Richard MacCutchan20-Oct-09 5:58
mveRichard MacCutchan20-Oct-09 5:58 
AnswerRe: Generating code when works in design mode. Pin
Richard MacCutchan20-Oct-09 3:23
mveRichard MacCutchan20-Oct-09 3:23 
Questionpls help Pin
nirmalsat20-Oct-09 0:56
nirmalsat20-Oct-09 0:56 
AnswerRe: pls help Pin
J4amieC20-Oct-09 1:07
J4amieC20-Oct-09 1:07 
QuestionA matter of style : Switch or ?: [modified] Pin
mgkr20-Oct-09 0:18
mgkr20-Oct-09 0:18 
AnswerRe: A matter of style : Switch or ?: Pin
OriginalGriff20-Oct-09 0:31
mveOriginalGriff20-Oct-09 0:31 
AnswerRe: A matter of style : Switch or ?: Pin
Christian Graus20-Oct-09 0:39
protectorChristian Graus20-Oct-09 0:39 

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.