Wrox Programmer Forums
|
Welcome to the p2p.wrox.com Forums.

You are currently viewing the section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Showing results 101 to 125 of 133
Search took 0.02 seconds.
Search: Posts Made By: gaurav_jain2403
Forum: ASP.NET 1.x and 2.0 Application Design February 12th, 2006, 04:37 AM
Replies: 11
Views: 3,391
Posted By gaurav_jain2403
So, It seems to me that we use Timer in .NET for...

So, It seems to me that we use Timer in .NET for Server-side. To accomplish the task I am intending to do, I will have to use JavaScript code. Thank you Peter. I searched on net and found the code of...
Forum: ADO.NET February 11th, 2006, 06:25 AM
Replies: 1
Views: 983
Posted By gaurav_jain2403
Is using DataSet secured

I am using DataSet in my application. But the information stored in it is confidential. I want to know if it is safe to store it in dataset? Is there any way that the user of Website be able to see...
Forum: ASP.NET 1.x and 2.0 Application Design February 11th, 2006, 06:19 AM
Replies: 11
Views: 3,391
Posted By gaurav_jain2403
I dont know how to use JavaScript. Is there no...

I dont know how to use JavaScript. Is there no way to do it in VB.NET . The Question I have in my mind is that If we can't use TIMER for this purpose, what is the purpose of it being in .NET...
Forum: ASP.NET 1.x and 2.0 Application Design February 9th, 2006, 11:48 AM
Replies: 11
Views: 3,391
Posted By gaurav_jain2403
Yes, I know how to use timer but it is not...

Yes, I know how to use timer but it is not working. I am writing this code in VB.NET:

Sub Page_Load( ........)
'timer1 is Timer dragged in Design window
timer1.Interval=5000
timer1.enabled=true...
Forum: ASP.NET 1.0 and 1.1 Basics February 9th, 2006, 11:40 AM
Replies: 3
Views: 1,095
Posted By gaurav_jain2403
I am not very sure but try OnClick="Create()" ...

I am not very sure but try OnClick="Create()"

Gaurav
Forum: ASP.NET 1.x and 2.0 Application Design February 9th, 2006, 12:19 AM
Replies: 11
Views: 3,391
Posted By gaurav_jain2403
Timer Problem

Hello everyone,
I am intending to use timer in one of my webpage of my application(ASP.NET and VB.NET). I want that if user doesn't click on SAVE button within 60 seconds, some event will be raised...
Forum: VS.NET 2002/2003 February 8th, 2006, 11:07 PM
Replies: 5
Views: 991
Posted By gaurav_jain2403
I want to do this because It is a test which will...

I want to do this because It is a test which will take place in an Office where all the candidates will sit together on different systems. But I dont know how the connection with them will be made...
Forum: ASP.NET 1.0 and 1.1 Professional February 8th, 2006, 03:09 AM
Replies: 5
Views: 1,187
Posted By gaurav_jain2403
Page expiry Problem

hello,
I am making an online testing application. When test starts, the user will be send a question. He will be given 30seconds to attempt it. If he doesn't attempt it in given time, next question...
Forum: VS.NET 2002/2003 February 7th, 2006, 10:52 PM
Replies: 5
Views: 991
Posted By gaurav_jain2403
Peter, Very very thanks to you. Yes, I am...

Peter, Very very thanks to you. Yes, I am intending to do this in Web application(ASP.NET and VB.NET). Are you sure we can't do this with server alone... Does that mean that client has to initiate? I...
Forum: VS.NET 2002/2003 February 6th, 2006, 02:04 PM
Replies: 0
Views: 843
Posted By gaurav_jain2403
Automatic Expiry of Page problem.

In my application, I am facing a problem. It is online test application.
When test begins, user is sent a Page containing question number 1... If user answer that question and saves it, he/she...
Forum: ASP.NET 1.0 and 1.1 Professional February 6th, 2006, 02:54 AM
Replies: 12
Views: 15,712
Posted By gaurav_jain2403
In VB.NET, the syntax for sorting is : ...

In VB.NET, the syntax for sorting is :
Dataview.Sort = "Sort-Order Desc/Asc"
That's why I asked you to enclose it in quotes. Anyways, the solution could be something
else. When you come to know...
Forum: ASP.NET 1.0 and 1.1 Professional February 6th, 2006, 02:33 AM
Replies: 12
Views: 15,712
Posted By gaurav_jain2403
ghari, In VB.NET, Sort expression needs to be...

ghari,
In VB.NET, Sort expression needs to be enclosed within the quotes.
Are you sure that in C#.NET you dont need to use quotes.
Forum: ASP.NET 1.0 and 1.1 Professional February 6th, 2006, 01:24 AM
Replies: 12
Views: 15,712
Posted By gaurav_jain2403
I dont have much knowledge about C# but i think...

I dont have much knowledge about C# but i think the problem is in this line:
dSetPropertyList.Tables[0].DefaultView.Sort = Session["sortExpProperty"] + " " + Session["sortExpPropertyOrder"];
...
Forum: VS.NET 2002/2003 February 6th, 2006, 12:15 AM
Replies: 5
Views: 991
Posted By gaurav_jain2403
How to run pages at client?

hello friends...
I have got a problem here. I am making an application in which I want to send the login_Page to the client side from SERVER without his doing anything. Then when he enters correct...
Forum: ASP.NET 1.0 and 1.1 Basics February 5th, 2006, 11:18 PM
Replies: 4
Views: 7,014
Posted By gaurav_jain2403
Type = "hidden" will not work here as this is not...

Type = "hidden" will not work here as this is not the HTML control. Use this property:

textbox.visible = "false"

Gaurav
Forum: VS.NET 2002/2003 February 5th, 2006, 10:34 AM
Replies: 5
Views: 1,166
Posted By gaurav_jain2403
Imar, I tried Session variable. But I dont have...

Imar, I tried Session variable. But I dont have any idea where and how to initialize value of this session variable to 0("zero"). Once I know how to initialize it to zero, rest I can do in my coding....
Forum: VB.NET 2002/2003 Basics February 4th, 2006, 06:50 AM
Replies: 2
Views: 891
Posted By gaurav_jain2403
Friends, I have got a problem. Tell me how to...

Friends, I have got a problem. Tell me how to send a Email from our webpage by clicking on the button.
Thanks in advance
Forum: VS.NET 2002/2003 February 4th, 2006, 06:45 AM
Replies: 5
Views: 1,166
Posted By gaurav_jain2403
Thanks Imar. But this is not the solution to my...

Thanks Imar. But this is not the solution to my problem. I want to do this thing in Program. I want that if a user enters wrong Password, LoginID or both, same page(Login_Page) will open and the...
Forum: ASP.NET 1.0 and 1.1 Professional February 4th, 2006, 06:33 AM
Replies: 12
Views: 15,712
Posted By gaurav_jain2403
I dont know why it is not working ...Will u send...

I dont know why it is not working ...Will u send me the coding for it ...may be there is something wrong in it ...
Forum: ASP.NET 1.0 and 1.1 Professional February 4th, 2006, 01:46 AM
Replies: 12
Views: 15,712
Posted By gaurav_jain2403
Coding is correct. I think these numbers are...

Coding is correct. I think these numbers are being sorted as a string. check whether you have taken the datatype of datafield as integer or long. If not try this and tell me what happens....
Tell me...
Forum: VB.NET February 4th, 2006, 12:00 AM
Replies: 3
Views: 2,242
Posted By gaurav_jain2403
Sorry Venki, I have no idea about SQL Express...

Sorry Venki, I have no idea about SQL Express 2005. I think someone else has to help us.
Forum: VS.NET 2002/2003 February 3rd, 2006, 11:31 PM
Replies: 5
Views: 1,166
Posted By gaurav_jain2403
Same Page Open Problem.

I have a problem in making my online testing application. I want the
user to enter his Login_ID and Password(already stored in database) in the home_page. Then this data is sent to the database. If...
Forum: General .NET February 3rd, 2006, 01:47 PM
Replies: 1
Views: 1,641
Posted By gaurav_jain2403
what is global.asax?

Friends. What is global.asax and what is the use of it?

Gaurav
Forum: General .NET February 3rd, 2006, 01:45 PM
Replies: 3
Views: 37,902
Posted By gaurav_jain2403
How to declare global variable

Hello friends.
I want to know how we can declare a variable as global so that we can use it throughout the application in VB.NET and ASP.NET. Is it possible to assign it some value like 0("zero")...
Forum: VB.NET February 3rd, 2006, 01:11 PM
Replies: 3
Views: 2,242
Posted By gaurav_jain2403
Venki, If you are using SQL SERVER 7.0 or later...

Venki, If you are using SQL SERVER 7.0 or later then use SQLClient and if you are using SQL SERVER earlier than 7.0 then use OLEDBClient....tell me which version you are using...

Gaurav
Showing results 101 to 125 of 133

 




Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.