Search Results

Showing results 1 to 33 of 33
Search took 0.01 seconds.
Search: Posts Made By: tuse ; Forum: ASP.NET and child forums
Forum: ASP.NET Aug 17th, 2008
Replies: 1
Views: 626
Posted By tuse
I got it.

It is Request.QueryString("qs-name")

For some reason it was not working the first time I tried it.
Forum: ASP.NET Aug 17th, 2008
Replies: 1
Views: 626
Posted By tuse
The website that I created enables users to signup. When they register an account, a mail is sent to them.

In the mail, I wish to send them a link upon clicking of which enables them to login.
...
Forum: ASP.NET Aug 1st, 2008
Replies: 3
Views: 537
Posted By tuse
Passing variables between pages can be done using Query Strings.


Response.Redirect("somepage.aspx?name=" & Me.TextBox1.Text)



The value of the user input in the TextBox1 of the page can be...
Forum: ASP.NET Jul 27th, 2008
Replies: 3
Views: 1,024
Posted By tuse
Umm... I think you should maintain a database of 'suggests' for showing them in the 2nd TextBox

As @bhi said, enable the autopostback property for the 1st textbox and do this-


"Select * from...
Forum: ASP.NET Jul 25th, 2008
Replies: 10
Views: 2,726
Posted By tuse
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,726
Posted By tuse
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,726
Posted By tuse
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,726
Posted By tuse
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 25th, 2008
Replies: 7
Views: 1,173
Posted By tuse
Hi jamello!

Its made in Visual Studio 2008 using .NET Framework 3.5

ps- You need to have AJAX in order to get it working in VS 2005
Forum: ASP.NET Jul 24th, 2008
Replies: 10
Views: 2,726
Posted By tuse
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 23rd, 2008
Replies: 3
Views: 1,562
Posted By tuse
Here is the link for an Online Examination Project that I made- http://dotnet.tekyt.info/?p=34

Its free :)
Forum: ASP.NET Jul 23rd, 2008
Replies: 1
Views: 2,637
Posted By tuse
hi pranav

could you please post the code you wrote?
Forum: ASP.NET Jul 22nd, 2008
Replies: 7
Views: 1,173
Posted By tuse
hi greeny,

could you please enable debugging in your web.config and tell me where exactly you are getting the error?
Forum: ASP.NET Jul 21st, 2008
Replies: 1
Views: 383
Posted By tuse
Just take a look at the sample code given here- http://dotnet.tekyt.info/?p=31

I have connected to a MySQL database using a ODBC Connector.

Read this post for clarity and the download source-...
Forum: ASP.NET Jul 21st, 2008
Replies: 7
Views: 1,173
Posted By tuse
Its just that the code is in VB.NET. I guess you can still figure out the logic
Forum: ASP.NET Jul 21st, 2008
Replies: 7
Views: 1,173
Posted By tuse
I have made a similar project. You might want to see the code-

http://dotnet.tekyt.info/?p=34

In case you have any doubts about the code, do ask here.
Forum: ASP.NET Jul 16th, 2008
Replies: 20
Views: 16,382
Posted By tuse
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 16th, 2008
Replies: 1
Views: 462
Posted By tuse
You might want to take a look at this- http://dotnet.tekyt.info/?p=31

I've done it using MySQL, for Access all you need to do is change the Connection String (I guess you know this already judging...
Forum: ASP.NET Jul 14th, 2008
Replies: 20
Views: 16,382
Posted By tuse
You can try online examination project.

Have done one here- http://dontnet.tekyt.info
Forum: ASP.NET Jul 8th, 2008
Replies: 1
Views: 1,410
Posted By tuse
Ok, I know I've asked this before but am yet to get a convincing answer.

Unlike VS 2005, its very difficult to position controls as desired (at required location) in VS 2008.

The Absloute...
Forum: ASP.NET Jul 8th, 2008
Replies: 4
Views: 2,194
Posted By tuse
Well when you click on the button, the page is posted back to the server and you start again with rec_count as 0.

Thus when you click on the Next button, you see only your first record and when...
Forum: ASP.NET Jul 8th, 2008
Replies: 2
Views: 1,097
Posted By tuse
If you want the code inside the Page_load to execute just the first time the page loads and prevent it from executing subsequently, put this part of code inside an if not IsPostBack block

...
Forum: ASP.NET Jul 8th, 2008
Replies: 6
Views: 3,816
Posted By tuse
@Serkan

What about the case in which the test is being taken by a user and then he clicks the back button? How can this situation be handled?
Forum: ASP.NET Jul 4th, 2008
Replies: 6
Views: 3,816
Posted By tuse
Well, I googled a bit (I rely more on daniweb than google these days) and what I found was this cannot be done.

However, a work around this is clearing the cache using a javascript. Javascript...
Forum: ASP.NET Jul 4th, 2008
Replies: 12
Views: 2,336
Posted By tuse
Your page is being 'posted back'

Disable the auto post back property of the dropdown list.
Forum: ASP.NET Jul 4th, 2008
Replies: 6
Views: 3,816
Posted By tuse
I have an online exam system in which after the test, the result is displayed in a new asp.net page. If he clicks on the 'back' button on the browser, he gets back to the page which displays the test...
Forum: ASP.NET Jul 1st, 2008
Replies: 1
Views: 1,291
Posted By tuse
I got the solution.

Used the AJAX Timer Control.


http://www.asp.net/ajax/documentation/live/tutorials/IntroToTimerControl.aspx
Forum: ASP.NET Jul 1st, 2008
Replies: 1
Views: 1,291
Posted By tuse
Hi!

I am trying to develop an online examination system (my first asp.net project) in which multiple choice questions need to be answered within a time frame. One question appears after another on...
Forum: ASP.NET Jun 21st, 2008
Replies: 4
Views: 1,440
Posted By tuse
I asked my hosting provider about Mono.

They said they do not support it :(
Forum: ASP.NET Jun 20th, 2008
Replies: 4
Views: 1,440
Posted By tuse
Hi!

I have a linux server on which I have some drupal websites hosted.

I was wondering if it is possible to host asp.net pages on the same linux server?
Forum: ASP.NET Jun 20th, 2008
Replies: 2
Views: 7,725
Posted By tuse
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,725
Posted By tuse
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,...
Forum: ASP.NET Jun 15th, 2008
Replies: 0
Views: 1,061
Posted By tuse
I am new to ASP and using Visual Studio 2008.

Unlike Visual Studio 2005, 2008 does not seem to have the absolute Layout that can be set for the entire webpage.

Each control needs to given the...
Showing results 1 to 33 of 33

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC