Click here to Skip to main content
16,004,906 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Custom Control Pin
Saksida Bojan18-Sep-07 21:03
Saksida Bojan18-Sep-07 21:03 
Questiongridview [modified] Pin
newbieAl18-Sep-07 10:37
newbieAl18-Sep-07 10:37 
AnswerRe: gridview Pin
ChrisKo18-Sep-07 11:14
ChrisKo18-Sep-07 11:14 
GeneralRe: gridview Pin
newbieAl18-Sep-07 12:36
newbieAl18-Sep-07 12:36 
AnswerRe: gridview Pin
pmarfleet18-Sep-07 11:45
pmarfleet18-Sep-07 11:45 
GeneralRe: gridview Pin
newbieAl18-Sep-07 13:37
newbieAl18-Sep-07 13:37 
QuestionCulture Info Pin
Amit Kumar G18-Sep-07 9:13
Amit Kumar G18-Sep-07 9:13 
AnswerRe: Culture Info Pin
Guffa18-Sep-07 9:52
Guffa18-Sep-07 9:52 
You can create a CultureInfo object from a culture identifier or culture name. Example:

CultureInfo culture = new CultureInfo("en-GB");

You just have to find out what culture the user preferres. The Accept-Language header in the HTTP headers might be one way to find this out.

You use the CultureInfo object whenever you format any data that is culture dependant, for example in the string.Format or double.ToString methods. Example:

labelPrice.Text = price.ToString("C2", culture);

---
single minded; short sighted; long gone;

GeneralRe: Culture Info Pin
Amit Kumar G18-Sep-07 10:27
Amit Kumar G18-Sep-07 10:27 
AnswerRe: Culture Info Pin
Guffa18-Sep-07 11:37
Guffa18-Sep-07 11:37 
AnswerRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
Not Active18-Sep-07 8:18
mentorNot Active18-Sep-07 8:18 
GeneralRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
dreddy718-Sep-07 8:28
dreddy718-Sep-07 8:28 
GeneralRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
dreddy718-Sep-07 8:31
dreddy718-Sep-07 8:31 
GeneralRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
Not Active18-Sep-07 8:40
mentorNot Active18-Sep-07 8:40 
GeneralRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
dreddy718-Sep-07 9:06
dreddy718-Sep-07 9:06 
GeneralRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
Not Active18-Sep-07 9:22
mentorNot Active18-Sep-07 9:22 
GeneralRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
dreddy718-Sep-07 10:41
dreddy718-Sep-07 10:41 
GeneralRe: How to check if sqldata adapter has nothing, in VB.NET/ASP.NET Pin
Not Active18-Sep-07 11:09
mentorNot Active18-Sep-07 11:09 
Questiondatagrid issue Pin
Ridge Howison18-Sep-07 6:50
Ridge Howison18-Sep-07 6:50 
AnswerRe: datagrid issue Pin
Fred_Smith18-Sep-07 7:24
Fred_Smith18-Sep-07 7:24 
GeneralRe: datagrid issue Pin
Ridge Howison18-Sep-07 8:21
Ridge Howison18-Sep-07 8:21 
QuestionAccessing aspx pages from AJAX tab control Pin
lovescalifornia218-Sep-07 6:13
lovescalifornia218-Sep-07 6:13 
QuestionEach row of gridview is a treeview [modified] Pin
ctlqt1218-Sep-07 5:24
ctlqt1218-Sep-07 5:24 
AnswerRe: Using a POS as a smart card reader... Pin
Pete O'Hanlon18-Sep-07 5:05
mvePete O'Hanlon18-Sep-07 5:05 
GeneralRe: Using a POS as a smart card reader... Pin
Tugbay Sahin18-Sep-07 10:25
Tugbay Sahin18-Sep-07 10:25 

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.