Forum: ASP.NET Aug 3rd, 2006 |
| Replies: 3 Views: 1,306 You can find a bunch of videos here: http://www.asp.net/learn/videos/default.aspx |
Forum: Windows Servers and IIS Aug 29th, 2005 |
| Replies: 11 Views: 6,197 No, the hosts file is only for the local machine that it resides on. To allow machines on your network to access your webserver by name use DNS. |
Forum: Windows NT / 2000 / XP Aug 29th, 2005 |
| Replies: 6 Views: 2,376 Yep, sounds like it could be spyware. Download the MS Anti Spyware (http://www.microsoft.com/downloads/details.aspx?FamilyId=321CD7A2-6A57-4C57-A8BD-DBF62EDA9671&displaylang=en) software it works... |
Forum: Windows Servers and IIS Aug 29th, 2005 |
| Replies: 11 Views: 6,197 Operating systems use the local host file to resolve host names to ip addresses. |
Forum: Search Engine Optimization Aug 17th, 2005 |
| Replies: 3 Views: 1,939 Only when checking backlinks :) |
Forum: Windows Servers and IIS Aug 17th, 2005 |
| Replies: 5 Views: 6,236 Is it configured for bridge mode or ppoa?
I guess the main question really is why are you using a router behind the Actiontec? It supports NAT...
If its configured for ppoa you should have an... |
Forum: Windows Servers and IIS Aug 16th, 2005 |
| Replies: 5 Views: 6,236 What model is the actiontec? |
Forum: Site Layout and Usability Aug 12th, 2005 |
| Replies: 2 Views: 2,083 It would be something like this:
<a href="/bios/MyFile.pdf">Download PDF</a>
You would need to place the pdf document in that folder on the webserver. |
Forum: Windows Software Aug 10th, 2005 |
| Replies: 7 Views: 2,599 I would recommend doing a clean install when you make the move to XP. In the meantime, if you cannot run scandisk or defrag in windows you might want to try booting into safemode and try running them... |
Forum: Windows Software Aug 10th, 2005 |
| Replies: 7 Views: 2,599 What OS are you running? 98? |
Forum: Windows NT / 2000 / XP Aug 10th, 2005 |
| Replies: 8 Views: 5,609 Are you logged in as an administrator? Also, you might want to check your windows update log file for more detailed errors. The log file should be:
c:\windows\WindowsUpdate.log |
Forum: IT Professionals' Lounge Aug 10th, 2005 |
| Replies: 6 Views: 12,740 |
Forum: Windows Software Aug 10th, 2005 |
| Replies: 7 Views: 2,599 Registry cleaners are a rip off IMHO. What problem are you trying to fix by running a registry cleaner? If it’s simply to improve system performance or reliability than you probably will not see much... |
Forum: Windows NT / 2000 / XP Aug 10th, 2005 |
| Replies: 4 Views: 3,298 For clarity's sake, the reason I asked you to do this is because I see this type of behavior quite often when people have network drives mapped to servers that are not available. A perfect example of... |
Forum: Windows NT / 2000 / XP Aug 10th, 2005 |
| Replies: 4 Views: 3,298 Go to start > run and type cmd.exe - press enter.
Type this command:
net use
Paste the output in your reply. |
Forum: Windows NT / 2000 / XP Aug 10th, 2005 |
| Replies: 8 Views: 5,609 Run through the steps listed in this (http://www.updatexp.com/0x800B0004.html) article and see if that helps. |
Forum: Website Reviews Aug 9th, 2005 |
| Replies: 9 Views: 2,013 I agree...too much text. Also the yellow background and red title's are a little hard on the eyes. |
Forum: IT Professionals' Lounge Aug 9th, 2005 |
| Replies: 6 Views: 12,740 If you are learning from scratch I would recommend getting a book on ASP.NET using VB.NET. Most tutorials out there assume that you have a little understanding of the technology. Otherwise I would... |
Forum: ASP.NET Aug 9th, 2005 |
| Replies: 1 Views: 2,595 Check out this post:
http://www.daniweb.com/techtalkforums/thread29681.html |
Forum: ASP.NET Aug 9th, 2005 |
| Replies: 2 Views: 2,865 Could be a port conflict...Make sure you dont have any other services listening on port 80 on that server. |
Forum: Website Reviews Aug 9th, 2005 |
| Replies: 9 Views: 2,013 Uh, what is the url? Is it one of the links in your sig? |
Forum: Windows Servers and IIS Aug 9th, 2005 |
| Replies: 11 Views: 6,197 unless you have 500 workstations... :lol:
Seriously though, do what the other guy said and use DNS. If you really want to edit the hosts file on every machine its in:... |
Forum: Windows Servers and IIS Aug 9th, 2005 |
| Replies: 2 Views: 3,869 You need to set "home.htm" as your default page for the site in IIS. This can be changed in the properties of the website in IIS on documents tab. |
Forum: Search Engine Optimization Aug 9th, 2005 |
| Replies: 6 Views: 3,715 In my experience MSN seems to focus a little more on the on page aspects of SEO. If you want to improve in google work on building more and more relevant links to your site. |
Forum: ASP.NET May 13th, 2005 |
| Replies: 3 Views: 9,465 check out user controls.
here's a quickstart with some examples:
http://www.dotnetjunkies.com/quickstart/aspplus/doc/webpagelets.aspx |
Forum: ASP.NET May 10th, 2005 |
| Replies: 2 Views: 1,950 It's really not clear what you are trying to do...Could you give some more details?
-sypher |
Forum: ASP.NET May 6th, 2005 |
| Replies: 3 Views: 2,669 Here is an example using a class called MyClass in Page1.aspx
In you class file:
Public Class MyClass
Inherits System.Web.UI.Page
In your code behind page: |
Forum: ASP.NET May 5th, 2005 |
| Replies: 5 Views: 29,597 Can you post some code?
-sypher |
Forum: ASP.NET May 5th, 2005 |
| Replies: 4 Views: 42,256 Here's an example. Lets say you have page1.aspx with a textbox control. You want a user to click a next button, transfering to page2.aspx and writting the text out on that page.
The code for... |