473,473 Members | 1,790 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

how to create guid by javascript?


we need create a GUID in web page, just like:
{26C2E7C8-C689-D1D5-C452-58EC5A2F2A39}

Could anyone tell me how to use javascript
to create it without ActiveX object?
Aug 14 '06 #1
7 32839
The following gives a description of the algorithm:
http://www.webdav.org/specs/draft-le...s-guids-01.txt

tamsun написа:
we need create a GUID in web page, just like:
{26C2E7C8-C689-D1D5-C452-58EC5A2F2A39}

Could anyone tell me how to use javascript
to create it without ActiveX object?
Aug 14 '06 #2
JRS: In article <ht********************************@4ax.com>, dated
Mon, 14 Aug 2006 15:36:48 remote, seen in news:comp.lang.javascript,
tamsun <ta****@gmail.composted :
>
we need create a GUID in web page, just like:
{26C2E7C8-C689-D1D5-C452-58EC5A2F2A39}

Could anyone tell me how to use javascript
to create it without ActiveX object?
To make a random string of that form, you can note that it is made up of
four-hex-character units.

function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).subst ring(1) }

should generate such a unit of random value;

Ans =
(S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()).toUpperCase()

--
John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4
<URL:http://www.jibbering.com/faq/>? JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Aug 14 '06 #3
Thank you very much.
On 14 Aug 2006 01:17:50 -0700, "Georgi Naumov" <go******@gmail.com>
wrote:
>The following gives a description of the algorithm:
http://www.webdav.org/specs/draft-le...s-guids-01.txt
Aug 15 '06 #4
Great, It's a good method. thank you very much.
I wonder can this method ensure I can create the unique string ?
I don't know the random mechanism of javascript,
e.g. I have 300 computers, and create this random
string concurring, javascript can ensure the
random string is unique?

On Mon, 14 Aug 2006 21:43:39 +0100, Dr John Stockton
<jr*@merlyn.demon.co.ukwrote:
>JRS: In article <ht********************************@4ax.com>, dated
Mon, 14 Aug 2006 15:36:48 remote, seen in news:comp.lang.javascript,
tamsun <ta****@gmail.composted :
>>
we need create a GUID in web page, just like:
{26C2E7C8-C689-D1D5-C452-58EC5A2F2A39}

Could anyone tell me how to use javascript
to create it without ActiveX object?

To make a random string of that form, you can note that it is made up of
four-hex-character units.

function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).subst ring(1) }

should generate such a unit of random value;

Ans =
(S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4()).toUpperCase()
Aug 16 '06 #5
tamsun wrote on 16 aug 2006 in comp.lang.javascript:
and create this random
string concurring, javascript can ensure the
random string is unique?
Uniqueness does not exist in an limited string.
is 1 in a million enough for you?
[changed the string function to:
Math.random().toString(16).substring(2)]
<script type='text/javascript'>

var a,b,n=1;

a = Math.random().toString(16).substring(2);

while (a!=b && n<1e6) {
b=a;
a = Math.random().toString(16).substring(2);
n++;
};

document.write(a+' (value)<br>');
document.write(n+' (number of strings tested)<br>');

</script>

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Aug 16 '06 #6
On 16/08/2006 02:46, tamsun wrote:

[snip]
e.g. I have 300 computers, and create this random
string concurring, javascript can ensure the
random string is unique?
No. To guarantee that, make a central authority (a single designated
machine) responsible for creating and tracking the generated identifiers.

Mike
When replying to this group, please refrain from top-posting.
Aug 16 '06 #7
JRS: In article <lr********************************@4ax.com>, dated
Wed, 16 Aug 2006 09:46:13 remote, seen in news:comp.lang.javascript,
tamsun <ta****@gmail.composted :
>Great, It's a good method. thank you very much.
I wonder can this method ensure I can create the unique string ?
I don't know the random mechanism of javascript,
e.g. I have 300 computers, and create this random
string concurring, javascript can ensure the
random string is unique?

On Mon, 14 Aug 2006 21:43:39 +0100, Dr John Stockton
<jr*@merlyn.demon.co.ukwrote:
Please read the newsgroup FAQ on proper article formatting.

Only collective management can ensure uniqueness.

Indeed, if your 300 computers are identical, and the function
Math.random() is called at the same time (on some definition of time) on
all of them, then you probably should get identical results on all 300.

(The method of initialisation of the Random Number Generator is
unspecified, but it is common to use clock time; time from some other
origin could be used. Note that the resolution of the initialisation
may be less than that of the generator - see for example <URL:http://www
..merlyn.demon.co.uk/pas-rand.htm>.)

One can test the RNG to see its resolution : "Generator Properties" in
<URL:http://www.merlyn.demon.co.uk/js-randm.htm>.

It seems that some browsers have a 32-bit resolution, others at least
53-bit, in the RNG.

The question of probability of uniqueness is like that of the well-known
birthdays question; pick 23 people at random, and probably two or more
will have the same birthday.

With a 32-bit generator, ISTM that your chances of non-uniqueness are of
the order of 1 in (4E9/300^2) which is about 50000 - you will have to
decide whether that would be good enough, remembering Murphy.

Note : Evertjan's test does what it should; but, as Math.random() can
give exactly 0.5, it cannot be used as a direct substitute for mine.

--
John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4
<URL:http://www.jibbering.com/faq/>? JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Aug 16 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Robert Oschler | last post by:
Anybody seen a Javascript function that would generate a fairly robust equivalent to the Windows GUID (Globally Unique Identifier)? thx Robert Oschler "Let the web hear you, add your...
1
by: Alexander Muylaert | last post by:
Hi How can I generate a Guid in sourcecode? In delphi I Have shift-ctrl-g. This inserts a guid as text inside my source. How can I have visual studio generate a guid? kind regards
0
by: Joe Finsterwald | last post by:
Recently I needed to add a confirm to a LinkButton that called a JavaScript function on success, and did nothing on failure. I found documentation on adding a confirm, but not on how to place a...
1
by: Grey | last post by:
how to create a GUID from ASP.NET??? Is it possible to use this ID as primary key in createing DB record?? Million Thanks..
1
by: Axel Dahmen | last post by:
Hi, I can't create local fragment hyperlinks or JavaScript hyperlinks in ASP.NET. It always appends the current path to any value. How can I switch that off? Examples: * ...
9
by: Mis Dep. | last post by:
Dear all What is Create GUID on menu Tools in vb.net and how can i use it for something . as exsample Brg, TingN@ng
1
by: philmaz | last post by:
What I am trying to do is create a form that people can use to enter their email address to sign up for a mailing list. Once they enter their email address, I want the script to open up a txt file...
6
by: davibugi | last post by:
Hi people please help me out with this code cant find any person who has done it before. I want my calculations to be done without posting to another page. On change on the entered amount the...
5
by: plsHelpMe | last post by:
How to create dynamic javascript arrays using dojo toolkits Hello frens, I am in a big trouble. My objective is: I am having some categories shown by differnent radio buttons, on the click of...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.