Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,738 umm.. what prasu says is correct.
Its just that sometimes you may have to do a lot of comparisons. |
Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,738 Try this-
Just generate 16 x 40 numbers random numbers using the code. If you want it in the range as said, find the remainder of the generated random numbers on division by 10. Then split this... |
Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,738 Can you tell me the range in which you need these integers?
I have something in mind which depends upon this. |
Forum: ASP.NET Jul 25th, 2008 |
| Replies: 10 Views: 2,738 Do you mean the uniqueness of the numbers should be restricted to a group of 16 or do you want 16 x 40 unique numbers
--------------------
Yeah I got what you are trying to say. |
Forum: ASP.NET Jul 24th, 2008 |
| Replies: 10 Views: 2,738 Use the Random Class.
Dim arbit As New Random
Randomize()
X: For i = 0 To a.GetUpperBound(0)
t = arbit.Next(1, 10) |
Forum: ASP.NET Jul 16th, 2008 |
| Replies: 20 Views: 16,438 I guess in any web application you design, or for that matter any software you design, you must make sure that you have coded for all possible cases that may arise during its implementation.
You... |
Forum: ASP.NET Jul 14th, 2008 |
| Replies: 20 Views: 16,438 You can try online examination project.
Have done one here- http://dontnet.tekyt.info |
Forum: ASP.NET Jun 20th, 2008 |
| Replies: 2 Views: 7,747 If you want to deploy asp.net pages on your Linux Server, you might want to take a look at this -
http://www.dotheweb.net/lama/ |
Forum: ASP.NET Jun 20th, 2008 |
| Replies: 2 Views: 7,747 Ok. You need an Apache Module to do this.
Download it here- http://sourceforge.net/project/showfiles.php?group_id=175077&package_id=223778&release_id=490544
Since your Apache came from Wamp,... |