Click here to Skip to main content
15,908,768 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionsite restriction to 4 computers Pin
_tasleem26-Sep-06 1:39
_tasleem26-Sep-06 1:39 
Questionvirtual stock game-need help Pin
zaptd26-Sep-06 1:34
zaptd26-Sep-06 1:34 
Questionhow can make my asp.net web page browser compitable Pin
Deepak the Cool26-Sep-06 1:28
Deepak the Cool26-Sep-06 1:28 
AnswerRe: how can make my asp.net web page browser compitable Pin
Exelioindia26-Sep-06 1:47
Exelioindia26-Sep-06 1:47 
AnswerRe: how can make my asp.net web page browser compitable Pin
Guffa26-Sep-06 3:01
Guffa26-Sep-06 3:01 
QuestionSql server installed or not Pin
amaneet26-Sep-06 0:16
amaneet26-Sep-06 0:16 
QuestionTime Display Pin
kirthikirthi25-Sep-06 23:53
kirthikirthi25-Sep-06 23:53 
AnswerRe: Time Display Pin
Exelioindia26-Sep-06 1:53
Exelioindia26-Sep-06 1:53 
using System;
using System.Globalization;
using System.Threading;

public class FormatDate
{
public static void Main()
{
DateTime dt = DateTime.Now;
// Sets the CurrentCulture property to U.S. English.
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
// Displays dt, formatted using the ShortDatePattern
// and the CurrentThread.CurrentCulture.
Console.WriteLine(dt.ToString("d"));

// Creates a CultureInfo for German in Germany.
CultureInfo ci = new CultureInfo("de-DE");
// Displays dt, formatted using the ShortDatePattern
// and the CultureInfo.
Console.WriteLine(dt.ToString("d", ci));
}
}

Know is Drop, Unknown is Ocean

GeneralRe: Time Display Pin
kirthikirthi26-Sep-06 18:54
kirthikirthi26-Sep-06 18:54 
GeneralRe: Time Display Pin
Exelioindia26-Sep-06 20:45
Exelioindia26-Sep-06 20:45 
GeneralRe: Time Display Pin
kirthikirthi27-Sep-06 18:34
kirthikirthi27-Sep-06 18:34 
AnswerRe: Time Display Pin
Exelioindia27-Sep-06 19:15
Exelioindia27-Sep-06 19:15 
GeneralRe: Time Display Pin
kirthikirthi27-Sep-06 21:57
kirthikirthi27-Sep-06 21:57 
Question'The server threw an exception Pin
vivekdeshpande25-Sep-06 23:48
vivekdeshpande25-Sep-06 23:48 
Questionpartial class Pin
amaneet25-Sep-06 23:31
amaneet25-Sep-06 23:31 
AnswerRe: partial class Pin
_AK_25-Sep-06 23:39
_AK_25-Sep-06 23:39 
GeneralRe: partial class Pin
amaneet25-Sep-06 23:54
amaneet25-Sep-06 23:54 
GeneralRe: partial class Pin
_AK_26-Sep-06 0:00
_AK_26-Sep-06 0:00 
AnswerRe: partial class Pin
Sathesh Sakthivel25-Sep-06 23:47
Sathesh Sakthivel25-Sep-06 23:47 
GeneralRe: partial class Pin
_AK_26-Sep-06 0:00
_AK_26-Sep-06 0:00 
Questionproblem with Autoincreament Column Pin
Amit Agarrwal25-Sep-06 23:06
Amit Agarrwal25-Sep-06 23:06 
AnswerRe: problem with Autoincreament Column Pin
_AK_25-Sep-06 23:11
_AK_25-Sep-06 23:11 
GeneralRe: problem with Autoincreament Column Pin
Amit Agarrwal25-Sep-06 23:17
Amit Agarrwal25-Sep-06 23:17 
GeneralRe: problem with Autoincreament Column Pin
_AK_25-Sep-06 23:19
_AK_25-Sep-06 23:19 
GeneralRe: problem with Autoincreament Column Pin
Amit Agarrwal26-Sep-06 0:00
Amit Agarrwal26-Sep-06 0:00 

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.