Monday, May 24, 2010

How do i install IIS and run ASP on Windows XP Professional?

Insert the Windows XP Professional CD-Rom into your CD-Rom Drive


From your Start Button, go to Settings, and Control Panel


In the Control Panel window select Add/Remove Programs


In the Add/Remove window select Add/Remove Windows Components


In the Wizard window check Internet Information Services, click OK


An Inetpub folder will be created on your harddrive


Open the Inetpub folder, and find a folder named wwwroot


Create a new folder, like "MyWeb", under wwwroot.


Use a text editor to write some ASP code, save the file as "test1.asp" in the "MyWeb" folder


Make sure your Web server is running - its status can be checked by going into the Control Panel, then Administrative Tools, and double-click the "IIS Manager" icon


Open your browser and type in "http://localhost/MyWeb/test1.asp", to view your first ASP page

How do i install IIS and run ASP on Windows XP Professional?
postmodernism
Reply:on control panel choose add remove programs,


add remove windows components, choose IIS and check the options in details button...
Reply:Go to Control Panel and then to Add or Remove Programs, click on Add/Remove Windows Components, you will see a list, search for Internet Information Services (IIS), check it, click Next, and voila! You will need your Windows XP Cd for the installation.
Reply:Refer to my comments on http://answers.yahoo.com/question/index;...





Peace


How do i check my received mails in ASP.NET?

I was interested to make a full web based mail system i have a pop3 account i can send mail using ASp.NET but i need to know how to receive mails

How do i check my received mails in ASP.NET?
It is not that easy. may be contact a freelancer to code it for you at websites like http://getafreelnacer.com/
Reply:Sending is no problem, as you've probably discovered you only need to create a "message" in the proper format and pass it to a SMTP relay.





Receiving mail on the other hand requires complex issues supporting the necessary communication protocols (it's more of an ongoing 2-way "conversation" then a simple "send"), storage, routing, authorization, authenticaiton, more.





That's why typically people don't write the whole mail system but instead write a web frontend for an existing mail system which is not difficult to do if the chosen mailserver exposes the necessary hooks through an API.





Good Luck. There's opportunity in this, to create custom ways of looking at messages.

state flower

From where can i download free asp ebook?

tell me a place from where i can download an ebook which is suitable for a first time programmer and it shld b an ebook which will makes me an expert by end no matter how long the ebook is.

From where can i download free asp ebook?
http://www.free-itebooks.com/free_ebook_...


http://www.aspisfun.com/ebooks/intro.htm...


http://www.csebooks.com/aspebook.html


http://www.planetpdf.com/free_pdf_ebooks...


http://www.mslit.com/default.asp?mjr=FRE
Reply:http://booksforpeople.blogspot...





in this blog lot ebook available Report It



How to create logs in an ASP website?

public Log(string UserID, string IP)


{





string FilePath = @"C:\My Documents\My Webs\Website\Log\log.txt";


StreamWriter sw = new StreamWriter(FilePath,true);





sw.Write(UserID + " " + IP);


sw.WriteLine(" " + DateTime.Now);





sw.Flush();


sw.Close();


}

How to create logs in an ASP website?
if you meant login page...
Reply:well.. one solution would be to create your own logging system. Second, if you are using ASP.NET try log4net. It is based off of log4j which is an awesome logging framework for java applications.


How do I make a com+ dll from c-sharp code? And how do I call the com+ dll from asp?

Help! :-)

How do I make a com+ dll from c-sharp code? And how do I call the com+ dll from asp?
you can use th build tool for compile a project after that you using as an other object


Is it ok to remove ASP.NET as an account from my Windows XP computer?

I am the only user of the computer...Is removing ASP.NET as an account going to have any harmful consequences?

Is it ok to remove ASP.NET as an account from my Windows XP computer?
If you are running any programs that are written in .Net, then yes, it may cause problems. If you are doing any .Net development work, then yes, it may cause problems.

song meanings

Need a website that can teach me how to do ASP login and register file with javascript language?

plz recommend a website or even a book =)

Need a website that can teach me how to do ASP login and register file with javascript language?
OK, how are you going to use ASP for login (i am assuming .Net platform) and still use Java. By Java, do you mean Javascript ??





For ASP, if you want to login i recommend going to Microsofts site, search for ASP.Net and download the MS.Net express edition for Web. In you will find a Login component that you can use to login. You can also find a file component that you can use to upload files from your harddrive to any designated location (i am assuming your doing all of it on your local pc)...
Reply:I don't like ASP, PHP is better





but about.com seems to have alot on website instructions
Reply:i agree PHP is way much better.
Reply:I don't know if this will help, but java.sun.com is pretty helpful if you're programming in Java. There's a section that can teach you all kinds of helpful stuff. I think it's the code samples section.