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 1 to 25 of 133
Search took 0.01 seconds.
Search: Posts Made By: gaurav_jain2403
Forum: ASP.NET 2.0 Professional November 2nd, 2009, 10:59 AM
Replies: 1
Views: 1,607
Posted By gaurav_jain2403
hi.. First of all, I would like to tell you...

hi..
First of all, I would like to tell you that Solution Explorer is only used to create your project, nothing else and your file is getting saved on the physical drive and it will be read from...
Forum: ASP.NET 2.0 Professional November 2nd, 2009, 10:22 AM
Replies: 1
Views: 1,878
Posted By gaurav_jain2403
Hi.. Can you elaborate more on what you are...

Hi..

Can you elaborate more on what you are trying to do.

You can try to make the mode for your session state as off in web.config as:

<sessionStatemode="Off"></sessionState>

Let me...
Forum: SQL Server 2000 August 14th, 2007, 05:36 AM
Replies: 10
Views: 2,902
Posted By gaurav_jain2403
The logic is that use Datename(dw,'your_date')....

The logic is that use Datename(dw,'your_date'). Now this will return the day like monday,tuesday, etc. Accordingly, you can add the number of days into it like if it returns monday, Add 5 to the date...
Forum: SQL Server 2000 August 14th, 2007, 05:11 AM
Replies: 4
Views: 1,003
Posted By gaurav_jain2403
Yes, I have checked your query, it's not working...

Yes, I have checked your query, it's not working for some data. Change your query to :

select convert(datetime, cast(prdYear as varchar) + '-' + cast(prdMonth as varchar) + '-' + '01' )
from...
Forum: ASP.NET 2.0 Basics August 13th, 2007, 12:46 PM
Replies: 6
Views: 814
Posted By gaurav_jain2403
For SQL encryption, check this url: ...

For SQL encryption, check this url:

http://www.sqlservercentral.com/columnists/mcoles/freeencryption.asp



Gaurav
Forum: ASP.NET 2.0 Professional August 13th, 2007, 12:36 PM
Replies: 0
Views: 953
Posted By gaurav_jain2403
How to make interactive voice system

Hi everyone,
I want to add the functionality in my project(ASP.NET + C#) to call various telephone numbers(mobile and landline) and play the .wav file. Telephone numbers will be retrieved from SQL...
Forum: .NET Framework 1.x August 13th, 2007, 05:15 AM
Replies: 3
Views: 1,669
Posted By gaurav_jain2403
Yeah, using window.print you can print the page....

Yeah, using window.print you can print the page. If you want to print only the part of the page, put that part in div, say its id is divPrint. Use following javascript for printing the content in div...
Forum: .NET Framework 2.0 August 11th, 2007, 04:24 AM
Replies: 2
Views: 1,316
Posted By gaurav_jain2403
You have made populate_grid as Function. Change...

You have made populate_grid as Function. Change it to Method as:

Public Sub populate_grid(ByVal populate As System.EventArgs)
' Your code goes here
End Sub


Gaurav
Forum: .NET Framework 1.x August 11th, 2007, 04:12 AM
Replies: 1
Views: 2,125
Posted By gaurav_jain2403
Are you using different culture than degault...

Are you using different culture than degault en-us. If you are using en-us, check that there are some special characters in "13 8¿ù 2007". That's why it is unable to cast this string into Date. If...
Forum: ASP.NET 2.0 Professional August 10th, 2007, 11:48 AM
Replies: 2
Views: 2,926
Posted By gaurav_jain2403
Hi monica. Can you explain your problem in better...

Hi monica. Can you explain your problem in better way.
Forum: ASP.NET 2.0 Professional August 10th, 2007, 11:47 AM
Replies: 1
Views: 667
Posted By gaurav_jain2403
It's quite simple: string s = "virus220"; ...

It's quite simple:

string s = "virus220";
Response.Write(s);
Or,
TextBox1.Text = s;
Or whereever you want to display it. You can test it by writing these lines in Page_Load event.
Forum: ASP.NET 2.0 Professional August 10th, 2007, 07:10 AM
Replies: 5
Views: 2,462
Posted By gaurav_jain2403
Sorry nedo. I don't have any ideal solution for...

Sorry nedo. I don't have any ideal solution for you in my mind. Let someone help.
Forum: SQL Server 2000 August 10th, 2007, 04:50 AM
Replies: 2
Views: 2,347
Posted By gaurav_jain2403
Can you provide the code so that we can...

Can you provide the code so that we can understand your problem correctly.
Forum: ASP.NET 2.0 Basics August 10th, 2007, 04:42 AM
Replies: 5
Views: 4,177
Posted By gaurav_jain2403
Check your connectionstring. It may be incorrect....

Check your connectionstring. It may be incorrect.
Try this connectionstring:
SqlConnection con = new SqlConnection("Server=localhost;Database=vinod;uid=sa;pwd=;");
Or,
SqlConnection con = new...
Forum: ASP.NET 2.0 Professional August 10th, 2007, 04:37 AM
Replies: 5
Views: 2,462
Posted By gaurav_jain2403
GridView doesn't support such facility. Use...

GridView doesn't support such facility. Use DetailsView instead.
Forum: ASP.NET 1.0 and 1.1 Basics August 10th, 2007, 04:28 AM
Replies: 7
Views: 1,610
Posted By gaurav_jain2403
you can also use javascript to open the new...

you can also use javascript to open the new window. If you are looking for javascript solution, let me know.
Forum: SQL Server 2000 August 10th, 2007, 04:12 AM
Replies: 4
Views: 787
Posted By gaurav_jain2403
Sorry Vikash, It wil not produce the desired...

Sorry Vikash, It wil not produce the desired result.
Forum: SQL Server 2000 August 10th, 2007, 03:52 AM
Replies: 3
Views: 1,971
Posted By gaurav_jain2403
You are most welcome. Cheers!!!!

You are most welcome.

Cheers!!!!
Forum: SQL Server 2000 August 9th, 2007, 09:43 AM
Replies: 4
Views: 787
Posted By gaurav_jain2403
You can get this result. But there is no direct...

You can get this result. But there is no direct query for this. Read about cursors and use them. Or, use while loop in sql and temprary table.
Forum: ASP.NET 2.0 Professional August 9th, 2007, 08:24 AM
Replies: 9
Views: 3,581
Posted By gaurav_jain2403
You are refraining from using heavy code. But,...

You are refraining from using heavy code. But, not to disappoint you, achieving paging in datalist require hard work from you. You have to maintain few things in ViewState variable like the current...
Forum: SQL Server 2000 August 8th, 2007, 01:53 PM
Replies: 3
Views: 1,971
Posted By gaurav_jain2403
Try this and tell if it works: CREATE...

Try this and tell if it works:

CREATE Function dbo.fnGetEndDate()
Returns EndDate /*This is a UDT*/
AS
BEGIN
DECLARE @GetEndDate EndDate
Set @GetEndDate=(Select CAST(frmLauncher.Evaluation_ID...
Forum: ASP.NET 2.0 Basics August 8th, 2007, 05:00 AM
Replies: 7
Views: 1,218
Posted By gaurav_jain2403
Use this code to access the value of actv_id: ...

Use this code to access the value of actv_id:

string id = MyDropDownList.selectedValue;
Forum: ASP.NET 2.0 Professional August 8th, 2007, 04:47 AM
Replies: 8
Views: 5,129
Posted By gaurav_jain2403
You welcome.

You welcome.
Forum: ASP.NET 2.0 Basics August 7th, 2007, 01:34 PM
Replies: 7
Views: 1,218
Posted By gaurav_jain2403
From where do you want to reference the actv_id?...

From where do you want to reference the actv_id? In database or .Net? If .Net, in which event you are trying to access its value and from where you are accessing value??
Forum: ASP.NET 2.0 Basics August 7th, 2007, 12:18 PM
Replies: 7
Views: 1,218
Posted By gaurav_jain2403
Guys, Can you tell me what statement you are...

Guys, Can you tell me what statement you are writing for updating the tables?? Also, tell me where exactly you are facing the problem.
Showing results 1 to 25 of 133

 




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