Search Results

Showing results 1 to 40 of 95
Search took 0.01 seconds.
Search: Posts Made By: ManicCW
Forum: ASP.NET Jul 22nd, 2009
Replies: 6
Views: 520
Posted By ManicCW
You can use URL rewriting, but it is much better, in my opinion, to use folders with default.aspx page inside. Instead Home.aspx, use Home/Default.aspx.
Forum: ASP.NET Nov 7th, 2008
Replies: 2
Views: 1,092
Posted By ManicCW
You can use AJAX UpdatePanel and UpdateProgress to solve that problem.
http://ajax.asp.net
Forum: ASP.NET Feb 20th, 2008
Replies: 5
Views: 1,068
Posted By ManicCW
Did you enable SMTP in your local IIS?
Forum: ASP.NET Feb 20th, 2008
Replies: 24
Views: 3,504
Posted By ManicCW
Can you post some code from aspx and code behind?
Forum: ASP.NET Feb 20th, 2008
Replies: 7
Views: 4,103
Posted By ManicCW
You can create virtual directory with application in your IIS.
Forum: ASP.NET Feb 20th, 2008
Replies: 6
Views: 4,583
Posted By ManicCW
Server.MapPath("~\MyData\grades.mdb")
Forum: ASP.NET Feb 18th, 2008
Replies: 1
Views: 544
Posted By ManicCW
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: 8,727
Posted By ManicCW
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: 440
Posted By ManicCW
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: 6,511
Posted By ManicCW
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: 7,841
Posted By ManicCW
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: 905
Posted By ManicCW
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: 1,064
Posted By ManicCW
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: 2,985
Posted By ManicCW
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: 905
Posted By ManicCW
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: 3,424
Posted By ManicCW
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: 9,288
Posted By ManicCW
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: 3,057
Posted By ManicCW
Well OK, but I don't think he's gonna save much.
Forum: ASP.NET May 9th, 2007
Replies: 5
Views: 2,253
Posted By ManicCW
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: 2,253
Posted By ManicCW
What is the column of DeparturePlace?
Number?
What is the value of DropDownList1.SelectedValue?
Forum: ASP.NET May 9th, 2007
Replies: 1
Views: 733
Posted By ManicCW
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: 9,288
Posted By ManicCW
Well just populate second dropdown in SelectedIndexChanged event of the first dropdown.
Forum: Website Reviews May 9th, 2007
Replies: 3
Views: 1,263
Posted By ManicCW
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: 9,288
Posted By ManicCW
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: 3,057
Posted By ManicCW
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: 6,284
Posted By ManicCW
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: 6,284
Posted By ManicCW
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: 790
Posted By ManicCW
What is this?
You are updating master database. :-O

This is no good.
I recommend tutorials for beginners.

I the meantime, try using this:

...
Forum: ASP.NET May 7th, 2007
Replies: 1
Views: 1,015
Posted By ManicCW
Put image control in template column or use image column.
Forum: ASP.NET May 7th, 2007
Replies: 3
Views: 790
Posted By ManicCW
What is the error that you get?
Forum: ASP.NET May 7th, 2007
Replies: 1
Views: 899
Posted By ManicCW
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: 6,284
Posted By ManicCW
Where did you put this function and how did you call it?
Forum: Website Reviews Apr 23rd, 2007
Replies: 1
Views: 914
Posted By ManicCW
I have set caching on thumbs 60 minutes so now it loads much faster.
Forum: ASP.NET Apr 23rd, 2007
Replies: 1
Views: 1,459
Posted By ManicCW
Try replacing qnum.SelectedItem.Value with qnum.SelectedValue
Forum: VB.NET Apr 20th, 2007
Replies: 4
Views: 1,388
Posted By ManicCW
Does that server allows relaying or have you used some authentication method?
Forum: ASP.NET Apr 16th, 2007
Replies: 3
Views: 1,829
Posted By ManicCW
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,519
Posted By ManicCW
Please paste your exception here.
Forum: ASP.NET Apr 13th, 2007
Replies: 1
Views: 1,265
Posted By ManicCW
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,829
Posted By ManicCW
Simply pass values in querystring like:

surveyeditor.aspx?title=MyTitle&Description=MyDescription

To accomplish this in gridview use this in your edit button navigation path:
...
Forum: ASP.NET Apr 13th, 2007
Replies: 1
Views: 2,038
Posted By ManicCW
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...
Showing results 1 to 40 of 95

 


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

©2003 - 2009 DaniWeb® LLC