Processing a German Cultured Excel file using C#
-
How do i process a german cultured Excel file. My code is able to handle en-US Technology used ASP.Net C# .Net 2.0 Thanks in Advance Pete
-
How do i process a german cultured Excel file. My code is able to handle en-US Technology used ASP.Net C# .Net 2.0 Thanks in Advance Pete
-
Hi Pete, Can u explain what you want with excel? Do u want to insert the data in DB(SQL/Oracle). Thanks Hem
Hi Hem Thanks for reply. yes, i need to read the Excel file. and process the data in the same. when i try to read all data as text, Numbers with german format are of great trouble. Is there any way to detect the clients culture and process the file? waiting for the valuable reply Thanks in Advance Pete
-
Hi Hem Thanks for reply. yes, i need to read the Excel file. and process the data in the same. when i try to read all data as text, Numbers with german format are of great trouble. Is there any way to detect the clients culture and process the file? waiting for the valuable reply Thanks in Advance Pete
-
I am using the following setting in the web config.
**globalization requestencoding="iso-8859-1" responseencoding="iso-8859-1" culture="en-US" uiculture="en-US"**
Do i need to mention the same again in each page????Thanks & Regards Pete
-
I am using the following setting in the web config.
**globalization requestencoding="iso-8859-1" responseencoding="iso-8859-1" culture="en-US" uiculture="en-US"**
Do i need to mention the same again in each page????Thanks & Regards Pete
-
To set the UI culture and culture for all pages, add a globalization section to the Web.config file, and then set the uiculture and culture attributes, as shown in the following example: <globalization uiCulture="en-US" culture="en-US" />