User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 402,489 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,813 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 88
Search took 0.01 seconds.
Posts Made By: ManicCW
Forum: ASP.NET Feb 20th, 2008
Replies: 5
Views: 685
Posted By ManicCW
Re: send email

Did you enable SMTP in your local IIS?
Forum: ASP.NET Feb 20th, 2008
Replies: 24
Views: 1,685
Posted By ManicCW
Re: Detailsview not visible

Can you post some code from aspx and code behind?
Forum: ASP.NET Feb 20th, 2008
Replies: 7
Views: 884
Posted By ManicCW
Re: view ASPX file in internet browser

You can create virtual directory with application in your IIS.
Forum: ASP.NET Feb 20th, 2008
Replies: 6
Views: 1,590
Posted By ManicCW
Re: Relative path of MS Access Database

Server.MapPath("~\MyData\grades.mdb")
Forum: ASP.NET Feb 18th, 2008
Replies: 1
Views: 224
Posted By ManicCW
Re: Asp.net and linux mail server

You can use any Linux mail server for this. Just change your MX records in your Windows hosting panel.
Forum: Ruby Feb 18th, 2008
Replies: 13
Views: 5,401
Posted By ManicCW
Re: Ruby and non-web development

Ruby is NOT just for web applications!
This sub forum should be renamed "Ruby on Rails".
Forum: ASP.NET Feb 18th, 2008
Replies: 1
Views: 215
Posted By ManicCW
Re: An ASP.net v2 question!

I don't think you can do that on individual files in asp.net. In vb.net (local programming) it is possible.
Forum: ASP.NET Feb 18th, 2008
Replies: 5
Views: 2,702
Posted By ManicCW
Re: Passing a variable to another page

Just put it in Session or QueryString.
In first page set on button click event:

Session("Number") = Me.MyTextbox.Text.Trim
--or--
Response.Redirect("Secondmenu.aspx?Number=" &...
Forum: ASP.NET Feb 18th, 2008
Replies: 7
Views: 2,214
Posted By ManicCW
Re: How to insert swf files in a page?

This is valid XHTML code for inserting swf.

<object type="application/x-shockwave-flash" data="SWFPath" width="SWFWidth" height="SWFHeight">
<param name="movie" value="SWFPath" />
</object>
Forum: ASP.NET Feb 12th, 2008
Replies: 8
Views: 538
Posted By ManicCW
Re: Webcounter

I have just now realized that you need web count, not number of online users. :D
Well just add +1 in Session_Start event and store sum in text file.
Forum: ASP.NET Feb 12th, 2008
Replies: 6
Views: 559
Posted By ManicCW
Re: Saving text in asp.net

You can use regular expressions but that is complex for this. To use simple formating, just replace control characters with html, like:



Then just use htmlText in your insert command.
Forum: ASP.NET Feb 12th, 2008
Replies: 21
Views: 1,349
Posted By ManicCW
Re: good way of validating login info vs SQL D/B

Yes, you have all the controls in your Toolbar if you are using Visual Studio 2005, or 2008.
Forum: ASP.NET Feb 12th, 2008
Replies: 8
Views: 538
Posted By ManicCW
Re: Webcounter

Why don't you track it with statistics?
Anyway, if you really want it, you can use global.asax file for that.

In Application_Start and Application_End event of global.asax set something like...
Forum: ASP.NET Feb 5th, 2008
Replies: 5
Views: 1,082
Posted By ManicCW
Re: How do i Password protect all my asp.net pages on my website

I agree. Use form authentication.
You can protect your site with simple two line code in web.config file.
Forum: ASP.NET May 10th, 2007
Replies: 6
Views: 5,996
Posted By ManicCW
Re: Populate One Drop Down List From Another

Sure it is.
But if she does not know how to populate this way it's going to be harder for her to do it ajax way.
Forum: ASP.NET May 9th, 2007
Replies: 6
Views: 1,925
Posted By ManicCW
Re: i want to send labelbox value with redirect page

Well OK, but I don't think he's gonna save much.
Forum: ASP.NET May 9th, 2007
Replies: 5
Views: 1,480
Posted By ManicCW
Re: I need help with GridView: Urgently please

Well that's better explanation of the problem than simply pasting code.

Use this:
WHERE DeparturePlace LIKE @DeparturePlace AND DestinationLoc LIKE @DestinationLoc

Instead of this:
WHERE...
Forum: ASP.NET May 9th, 2007
Replies: 5
Views: 1,480
Posted By ManicCW
Re: I need help with GridView: Urgently please

What is the column of DeparturePlace?
Number?
What is the value of DropDownList1.SelectedValue?
Forum: ASP.NET May 9th, 2007
Replies: 1
Views: 437
Posted By ManicCW
Re: Help again please>>>>

Pass values using querystring like:

Response.Rediract("MySecondPage.aspx?DeparturePlace=" & Me.MyDropDownList1.SelectedValue & "&Destination=" & Me.MyDropDownList2.SelectedValue)

:icon_wink:
Forum: ASP.NET May 9th, 2007
Replies: 6
Views: 5,996
Posted By ManicCW
Re: Populate One Drop Down List From Another

Well just populate second dropdown in SelectedIndexChanged event of the first dropdown.
Forum: Website Reviews May 9th, 2007
Replies: 3
Views: 831
Posted By ManicCW
Re: Can someone review my website

Nice job.


I suggest that you put section "Latest Places" also in the color box like "Place an Advert" or "User Login", or list it like the section "How does it Work".

By the way can I ask you...
Forum: ASP.NET May 9th, 2007
Replies: 6
Views: 5,996
Posted By ManicCW
Re: Populate One Drop Down List From Another

Do you know how to populate one combo?
If you don't i suggest that you read some tutorials before.
Forum: ASP.NET May 9th, 2007
Replies: 6
Views: 1,925
Posted By ManicCW
Re: i want to send labelbox value with redirect page

Why do you even redirect using javascript? :-/
Use code behind to redirect it.

In click event of the button:

Response.Redirect("~/MyPage.aspx?MyQuery=" & Me.MyTextBox.Text.Trim)
Forum: ASP.NET May 9th, 2007
Replies: 14
Views: 4,099
Posted By ManicCW
Re: Downloading a file

Then it probably exe file problem.
I will check MSDN if it has some help.
I never had need to upload or download exe file on the web. :D
Forum: ASP.NET May 8th, 2007
Replies: 14
Views: 4,099
Posted By ManicCW
Re: Downloading a file

pandiyarajan maybe you have some bug or something that is causing aspnet_wp.exe to crash.
Forum: ASP.NET May 8th, 2007
Replies: 3
Views: 560
Posted By ManicCW
Re: need u r help

What is this?
You are updating master database. :-O

This is no good.
I recommend tutorials for beginners.

I the meantime, try using...
Forum: ASP.NET May 7th, 2007
Replies: 1
Views: 600
Posted By ManicCW
Re: adding pictures?!!

Put image control in template column or use image column.
Forum: ASP.NET May 7th, 2007
Replies: 3
Views: 560
Posted By ManicCW
Re: need u r help

What is the error that you get?
Forum: ASP.NET May 7th, 2007
Replies: 1
Views: 578
Posted By ManicCW
Re: Pls Help Me Out

Run this in your sql query analyzer:


USE master;
GO
EXEC sp_configure 'user instances enabled', '1';
Forum: ASP.NET May 7th, 2007
Replies: 14
Views: 4,099
Posted By ManicCW
Re: Downloading a file

Where did you put this function and how did you call it?
Forum: Website Reviews Apr 23rd, 2007
Replies: 1
Views: 615
Posted By ManicCW
Re: Review and optimization (caching) tips

I have set caching on thumbs 60 minutes so now it loads much faster.
Forum: ASP.NET Apr 23rd, 2007
Replies: 1
Views: 926
Posted By ManicCW
Re: dropdownlist not firing

Try replacing qnum.SelectedItem.Value with qnum.SelectedValue
Forum: VB.NET Apr 20th, 2007
Replies: 4
Views: 1,011
Posted By ManicCW
Re: Sending mail

Does that server allows relaying or have you used some authentication method?
Forum: ASP.NET Apr 16th, 2007
Replies: 3
Views: 1,185
Posted By ManicCW
Re: edit from textbox

Me.MyTitle.Text = Request.Querystring("Title").ToString
Me.MyDescription.Text = Request.Querystring("Description").ToString

Btw. Looks like you need to go through basics of asp.net programming.
Forum: ASP.NET Apr 13th, 2007
Replies: 3
Views: 1,031
Posted By ManicCW
Re: Search record from SQLDatabase

Please paste your exception here.
Forum: ASP.NET Apr 13th, 2007
Replies: 1
Views: 799
Posted By ManicCW
Re: Help with MySQL

Did you import namespace System.Data.Odbc?

Btw. You did not declare sConnection as string.

Dim sConnection As String
Forum: ASP.NET Apr 13th, 2007
Replies: 3
Views: 1,185
Posted By ManicCW
Re: edit from textbox

Simply pass values in querystring like:

surveyeditor.aspx?title=MyTitle&Description=MyDescription

To accomplish this in gridview use this in your edit button navigation...
Forum: ASP.NET Apr 13th, 2007
Replies: 1
Views: 1,148
Posted By ManicCW
Re: Run msn messenger on button click in asp.net 2.0

First of all you should not mess with client computer using web. It always requires some ActiveX controls that need to be installed.

Second, you do not need to search for entire HD, you could just...
Forum: ASP.NET Apr 13th, 2007
Replies: 3
Views: 1,031
Posted By ManicCW
Re: Search record from SQLDatabase

Use ddl.SelectedValue.ToString
Forum: ASP.NET Apr 13th, 2007
Replies: 3
Views: 3,032
Posted By ManicCW
Re: ASP.NET Popup Control

What do you mean popup control? Something like message box, new browser window, show/hide div or what?
Showing results 1 to 40 of 88

 
All times are GMT -4. The time now is 4:56 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC