Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~5K People Reached
About Me

IT Consultant

19 Posted Topics

Member Avatar for lorf14plus

check out user controls. here's a quickstart with some examples: [url]http://www.dotnetjunkies.com/quickstart/aspplus/doc/webpagelets.aspx[/url]

Member Avatar for diptibhatore
0
243
Member Avatar for Tables

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] …

Member Avatar for jbennet
0
338
Member Avatar for ~s.o.s~

You can find a bunch of videos here: [url]http://www.asp.net/learn/videos/default.aspx[/url]

Member Avatar for ~s.o.s~
0
135
Member Avatar for ramareddy_dotne

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) …

Member Avatar for nbp
0
1K
Member Avatar for nathanpacker
Member Avatar for AlexClifford
Member Avatar for ederd60

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.

Member Avatar for antioed
0
138
Member Avatar for JohnnyMonk

[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 …

Member Avatar for sypher
0
252
Member Avatar for lynchone

Run through the steps listed in [URL=http://www.updatexp.com/0x800B0004.html]this[/URL] article and see if that helps.

Member Avatar for D-Rider
0
133
Member Avatar for jime0726

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.

Member Avatar for jime0726
0
98
Member Avatar for ayk-retail
Member Avatar for Blade10878

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.

Member Avatar for Catweazle
0
189
Member Avatar for II DaN II

Go to start > run and type cmd.exe - press enter. Type this command: net use Paste the output in your reply.

Member Avatar for II DaN II
0
217
Member Avatar for ecupirate

Check out this post: [url]http://www.daniweb.com/techtalkforums/thread29681.html[/url]

Member Avatar for sypher
0
71
Member Avatar for ecupirate

Could be a port conflict...Make sure you dont have any other services listening on port 80 on that server.

Member Avatar for sypher
0
346
Member Avatar for raj_b_kumar

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.

Member Avatar for sypher
0
169
Member Avatar for cmills83

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.

Member Avatar for sypher
0
244
Member Avatar for KG800

It's really not clear what you are trying to do...Could you give some more details? -sypher

Member Avatar for KG800
0
164
Member Avatar for lorf14plus

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. …

Member Avatar for lorf14plus
0
215

The End.