- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
IT Consultant
19 Posted Topics
Re: check out user controls. here's a quickstart with some examples: [url]http://www.dotnetjunkies.com/quickstart/aspplus/doc/webpagelets.aspx[/url] | |
Re: 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 recommend these sites to get started: [URL=http://www.learnvisualstudio.net]http://www.learnvisualstudio.net[/URL] Paid subscription required but well worth the cost [URL=http://www.developerfusion.co.uk/vbnet/]http://www.developerfusion.co.uk/vbnet/[/URL] [URL=http://www.vbdotnetforums.com/]http://www.vbdotnetforums.com/[/URL] … | |
Re: You can find a bunch of videos here: [url]http://www.asp.net/learn/videos/default.aspx[/url] | |
Re: 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 button click on page1.aspx [CODE] Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) … | |
Re: Can you post some code? -sypher | |
Re: Yep, sounds like it could be spyware. [URL=http://www.microsoft.com/downloads/details.aspx?FamilyId=321CD7A2-6A57-4C57-A8BD-DBF62EDA9671&displaylang=en]Download the MS Anti Spyware[/URL] software it works well and its free. | |
Re: [QUOTE=Tekmaven™]The easiest thing to do is modify each of the client machines host file, adding an entry to the server's ip address to whatever name you want.[/QUOTE] unless you have 500 workstations... :lol: Seriously though, do what the other guy said and use DNS. If you really want to edit … | |
Re: Run through the steps listed in [URL=http://www.updatexp.com/0x800B0004.html]this[/URL] article and see if that helps. | |
Re: It would be something like this: [CODE]<a href="/bios/MyFile.pdf">Download PDF</a>[/CODE] You would need to place the pdf document in that folder on the webserver. | |
Re: 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 of a difference. | |
Re: Go to start > run and type cmd.exe - press enter. Type this command: net use Paste the output in your reply. | |
Re: Check out this post: [url]http://www.daniweb.com/techtalkforums/thread29681.html[/url] | |
Re: Could be a port conflict...Make sure you dont have any other services listening on port 80 on that server. | |
Re: 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. | |
Re: 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. | |
Re: It's really not clear what you are trying to do...Could you give some more details? -sypher | |
Re: Here is an example using a class called MyClass in Page1.aspx In you class file: [CODE] Public Class MyClass Inherits System.Web.UI.Page [/CODE] In your code behind page: [CODE] Public Class Page1 Inherits MyClass [/CODE] So, you are replacing "Inherits System.Web.UI.Page" in your codebehind pages with the name of your class. … |
The End.