CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!



Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.club_web_site_starter_kit Tags:
Item Type: NewsGroup Date Entered: 2/25/2006 7:56:45 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 11 Views: 23 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
12 Items, 1 Pages 1 |< << Go >> >|
Attila
Asp.Net User
Date names2/25/2006 7:56:45 PM

0/0

is there any way to change the date code for different regions or is that something you have to to  on the server ? ? 

 

basicly i need to change the date , the name of the month to my region :)

 

 

hope u under  stand what i am talking about  and yeas i am new at this :)

 

best regards

Attila
Asp.Net User
Re: Date names3/7/2006 1:20:31 AM

0/0

hmm maybe no one understand what i am talkin about :)

 

ok lets take this web site for exaple (hope its ok )

 

http://www.sharepoint.ch/events_calendar.aspx    - when i look at this calender i get the name of the month?s in my language  witch is icelandic  but on my web site it only comes in english  and i would like to change that with your help ;)

 

so pls if you know how  let me know :)

 

best regards

whighfield
Asp.Net User
Re: Date names3/9/2006 3:15:30 AM

0/0

This is possible you will have to change the current culture within the actual EventCalender control.  What you will have to do is download the control's code from the downloads section of this website, then open up the project file and modify the ItemsTemplate.cs file you will have to add the following code at the top after the other using statements:

using System.Globalization;

using System.Threading;

And then find the following method:

public DataBoundCalendarHeader(DateTime VisibleDate)

and add this code after the last line in that method:

Thread.CurrentThread.CurrentCulture = new CultureInfo("is-IS");

This will change the current culture info for the dates returned to "Icelandic - Iceland"

 


- William

Give my enhanced version of the PWSK a look.

www.willyd.ca
Attila
Asp.Net User
Re: Date names3/9/2006 3:00:25 PM

0/0

thx a lot :) 

 

i will test this when i get home  and i will let you know how it goes ;)

 

thx for everything

 

best regards

 

Attila
Asp.Net User
Re: Date names3/9/2006 8:03:27 PM

0/0

hi

 

well i am trying this now  but i am  new to this :)

 

i have downloded the event control and modified the Item templets.cs

 

but what do i do next upload this file to the server ?

 

:) thx for all the help

 

best regards

whighfield
Asp.Net User
Re: Date names3/10/2006 1:37:17 AM

0/0

In the project folder for the event calendar control there will be a bin folder with a Debug or Release folder in it.  There should be an EventCalendar.dll file in there just after you Build the Solution.  You would copy this file to the bin folder of your the Club Starter Kit and replace it.  You probably want to make a copy of the existing EventCalendar.dll file before you do this and store it in a safe place just to be sure.  You then can test it out and see if it works.  If it does then simply upload that file to your server and replace the existing one.

Hope this helps... :)

 


- William

Give my enhanced version of the PWSK a look.

www.willyd.ca
Attila
Asp.Net User
Re: Date names3/11/2006 10:19:17 AM

0/0

hey this works   :)   thx a lot  you just made my day

 

just one more question :) :)

 

the news i write and stuff like thatt  display the  news  date  mm/dd/yy   but  i need it to display  dd/mm/yy 

is it hard to change this :)

 

again thx alot for your help 

best regards from the land of ice and fire  :)

whighfield
Asp.Net User
Re: Date names3/11/2006 8:24:45 PM

0/0

Actually the code that I gave you can be implemented on each of your pages in the <script> tag by implementing the Page_Load sub and put the Thread.CurrentThread.CurrentCulture = New CultureInfo("is-IS") in there.  This way all data that is displayed in some kind of control and has a specific data type (dates, currency, etc.) will be formatted properly by the Culture Info.  So I believe that the dates for Icelandic would be in the format 11.3.2006 24h time.  If you don't want this automatic formatting you can change the SQL code that returns the data and use the CONVERT function.  Something like CONVERT(varchar(11), <DATE_FIELD_IN_DATABASE_NAME>, 103).

Hope this helps

 


- William

Give my enhanced version of the PWSK a look.

www.willyd.ca
Attila
Asp.Net User
Re: Date names3/12/2006 8:12:10 PM

0/0

i will look in to this

 

thanks for all your help  :)

 

 

best regards

samsp
Asp.Net User
Re: Date names3/13/2006 4:38:14 PM

0/0

If you wnat this for all the pages on your site, then the simplest solution is to modify web.config and add the following:

<configuration>

<system.web>

<globalization culture="is-IS"/>

This will change the culture for the whole site

Attila
Asp.Net User
Re: Date names3/13/2006 8:16:06 PM

0/0

hi hi and thx for the reply :)

 

well i get error on both methods   ,  i tried this one  now

<configuration>

<system.web>

<globalization culture="is-IS"/>

 

when i upload the file to the ftp server i just get error message  i have to remove it to fix it again ??

 

after i set this in the file it comes like this

 

<configuration> comes with red underlines

<system.web>and this on also

<globalization culture="is-IS"/> but not this one

and i also tryed to close the tag at the end but alwayse  some error when i upload the file - i don?t know how to solve this :s

so what am i doing wrong :)

 

thx again for all the help

 

best regards

 

Attila
Asp.Net User
Re: Date names3/20/2006 9:08:33 PM

0/0

hey i figure it out :)
 
my mistake was that i was adding a new line to web. config file  but i just had to add lines into the  globalization command  , like this
 

<globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="is-IS" uiCulture="is-IS" />

 

so basicly i just added  culture="is-IS" uiCulture="is-IS"

 

well thx for all the help guys

 

best regards

12 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
The Business Writer's Handbook Authors: Gerald J. Alred, Charles T. Brusaw, Walter E. Oliu, Pages: 631, Published: 2006
Catholic Religious Orders: Listing Conventional and Full Names in English, Foreign Language, and Latin : Also Abbreviations, Date and Country of Origin Authors: Oliver Leonard Kapsner, Pages: 351, Published: 1948
A Collection of Upwards of Thirty Thousand Names of German, Swiss, Dutch, French and Other Immigrants in Pennsylvania from 1727-1776: With a Statement of the Names of Ships, Whence They Sailed, and the Date of Their Arrival at Philadelphia, Chronologically Arranged, Together with the Necessary Historical and Other Notes, Also, an Appendix Containing Lists of More Than One Thousand German and French Names in New York Prior to 1712 Authors: Israel Daniel Rupp, Pages: 495, Published: 1876
As You Like It: As You Like it Authors: William Shakespeare, Alan Brissenden, Pages: 256, Published: 1998

Web:
Date Names - Date Baby Names Date names. Date baby names for boys. Page 1. ... Click on each Date name for details and [variants], or search for Date names for girls. ...
Red Rose Save The Date Names And Website Magnet from Zazzle.com Buy this premium quality Red Rose Save The Date Names And Website Magnet. Most Zazzle orders ship in 24 hours! Browse the best brands or create your own ...
week links and date names | drupal.org Also, I'd need the calendar to show the current locale's names for dates and months... I notice that day headers in calendars are the right ...
A report for PR / PO releases - With Date, Names and Amounts ... The report will have details like Date, Relase strategy used, Amount approved using the release strategy and name of the person who has released the PR / PO ...
Pregnancy Articles & Getting Pregnant - Parenthood.com Free online baby name finder and a free online due date calendar. Read articles on your baby's development in the womb, birth methods, exercise during ...
Business Objects: Crystal Reports 1 Formulas - Spanish date names ... The letter is in English and looks OK when i run it here in the US but when the Spain user runs it, the month names show up in Spanish. ...
Date Names Time Event Time Names Date Date. Names. Time. Event. Time. Names. Date. 3/4/04. Andrea Axtell. 1:35.63. (17 -18). 200 Free. Relay. 1:23.60. Andrew Wang. 2/24/06. Beth McCullough ...
Date: Names: (Rec) Geology 2 MINERALS LAB Date:. Names:. (Rec). Geology 2. MINERALS LAB. Geologists study rocks, and since a rock is simply an aggregate of minerals, mineral identification is a ...
BMDCO Rescue Adoption Application Date: Names of Prospective ... Date:. Names of Prospective Bernese Parents and family members:. Address:. Phone :. Email:. Please answer the following questions as completely as possible ...
TMGR: Team Manager Filters Do Not Support Variable Date Names Microsoft Team Manager does not support variable date names like today, yesterday, or tomorrow in the Filter dialog boxes. If you use one of these variable ...

Videos:
ECK NAMES ELECTION DATE ECK Chairman Samuel Kivuitu announces the date of this year's election date.
PNU names date for selecting candidates November 4, 2007 -- President Kibaki's PNU settles on November 14 -- 15 as dates for nomination of parliamentary and civic candidates.
The Name of Jesus Cornerstone Community Church Topic : The Name of Jesus Speaker : Pastor Andrew Schaper Date : January 22, 2006 Main Scriptures ...
Search on Organisation, Date, Name, Place = "Terror Network" A short film by Kevin Carter. 2008
Sidekick lx for sale SEE Discription for 20 dollar discount I have 15 sidekick lx's in box I want 150 or better offer.I only accept paypal and i do overnight shipping.If you want a discount private message ...
George Carlin - On Location Complete show. "On Location: George Carlin at USC" is Irish-American comedian George Carlin's first ever HBO special, recorded during the ...
Neturei Karta Anti Zionist Rabbis Teach - Air Date: 07-31-00 The Rabbis explain: "Neturei Karta opposed the establishment of and retain all opposition to the existence of the so-called "State of Israel ...
Liz and Lucky - No Name Date 1998 Liz and Lucky go out to eat at the No Name. Enjoy. No copyright infringement intended. This clip is meant for entertainment purposes only.
Rabbis Chaim Freimann & Hillel Hillel - Air date: 01-25-05 Rabbis Chaim Tzvi Freimann & Hillel Deutsch - Memeber of Neturei Karta. Neturei Karta opposed the establishment of and retain all opposition to ...




Search This Site:










basic question

how can i change club starter kit extended skin template

installtion aborted...

rss

how to show the value of a checkbox in a control

web login difficulties

can anybody get this to work with netscape or other non internet explorer browsers?

events calendar

club starter kit with mysql

second clubsite but same database

yet another (time)format problem...

using carriage return in news and events

special characters, international language support in clubsite starter kit, nvarchar <-> varchar

change calendar to use accessdatacontrol

hi...

not updating

howto: use a single sql2000 database for club site starter kit

trouble creating admin role

deploying the clubsite / namespace could not be found

if you having problem, give this a try ...

trouble with membership

login problem with clubsite extended

member list - detailed info in popup

expanding the club starter kit .. working to add rsvp to events

invalidcastexception on my club site starter kit

datanavigateurlfield lists url from admin dir instead of newdir

invalidcastexception was unhandled by user code- error when adding events

adding new events from inside the calendar

how to get the event of local button fired

changing the day colour in the event calendar control

  Privacy | Contact Us
All Times Are GMT