Forum: ASP.NET Feb 20th, 2008 |
| Replies: 5 Views: 685 |
Forum: ASP.NET Feb 20th, 2008 |
| Replies: 24 Views: 1,685 |
Forum: ASP.NET Feb 20th, 2008 |
| Replies: 7 Views: 884 |
Forum: ASP.NET Feb 20th, 2008 |
| Replies: 6 Views: 1,590 |
Forum: ASP.NET Feb 18th, 2008 |
| Replies: 1 Views: 224 |
Forum: Ruby Feb 18th, 2008 |
| Replies: 13 Views: 5,401 |
Forum: ASP.NET Feb 18th, 2008 |
| Replies: 1 Views: 215 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 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 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 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 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 |
Forum: ASP.NET Feb 12th, 2008 |
| Replies: 8 Views: 538 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 |
Forum: ASP.NET May 10th, 2007 |
| Replies: 6 Views: 5,996 |
Forum: ASP.NET May 9th, 2007 |
| Replies: 6 Views: 1,925 |
Forum: ASP.NET May 9th, 2007 |
| Replies: 5 Views: 1,480 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 |
Forum: ASP.NET May 9th, 2007 |
| Replies: 1 Views: 437 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 |
Forum: Website Reviews May 9th, 2007 |
| Replies: 3 Views: 831 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 |
Forum: ASP.NET May 9th, 2007 |
| Replies: 6 Views: 1,925 |
Forum: ASP.NET May 9th, 2007 |
| Replies: 14 Views: 4,099 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 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 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 |
Forum: ASP.NET May 7th, 2007 |
| Replies: 3 Views: 560 |
Forum: ASP.NET May 7th, 2007 |
| Replies: 1 Views: 578 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 |
Forum: Website Reviews Apr 23rd, 2007 |
| Replies: 1 Views: 615 |
Forum: ASP.NET Apr 23rd, 2007 |
| Replies: 1 Views: 926 |
Forum: VB.NET Apr 20th, 2007 |
| Replies: 4 Views: 1,011 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 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 |
Forum: ASP.NET Apr 13th, 2007 |
| Replies: 1 Views: 799 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 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 |
Forum: ASP.NET Apr 13th, 2007 |
| Replies: 3 Views: 1,031 |
Forum: ASP.NET Apr 13th, 2007 |
| Replies: 3 Views: 3,032 Re: ASP.NET Popup Control What do you mean popup control? Something like message box, new browser window, show/hide div or what? |