Jump to content

Mr.Jay

Members
  • Posts

    55
  • Joined

  • Last visited

Everything posted by Mr.Jay

  1. Mr.Jay

    asp log in pages

    we do, but it would take along time to explain everything you need to make a register and login page.
  2. can you please show me all of the code.it looks like you need to add an ' around the checkbox value.
  3. Mr.Jay

    Order Form

    It depends what language you are making the script using.I assume its ASP as you have posted in the ASP Forum.Visit: http://www.webwizguide.info/asp/tutorials/...ts_tutorial.aspto learn about sending emails using CDONTSthen basically you have a html form setup and click the submit button which sends the results of the form to the processemail page which then emails the results to you and a standard email to the customer.
  4. Mr.Jay

    Please Help Me

    try going here.http://www.asp101.com/samples/login.asp
  5. Pleace this in between the <head> tags <script language="javascript" type="text/javascript">function openPopup(url, width, height){ var w = window.open(url, 'windowdetails', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=' + width + ',height=' + height) return w;}</script> then on your link you have something like this: <a href="#" onClick="openPopup('http://microsoft.com', '550', '435')">
  6. <table width="100%" border="2" cellspacing="0" cellpadding="0" id="pagelistings"> <tr> <td><span class="style12">Page Title </span></td> <td><span class="style12">Last Editied On </span></td> <td> </td> </tr> <tr> <td colspan="4"><span class="style6"></span></td> <% count = 0 oncolor = "#FFFFFF" offcolor = "#EDEEED" strSQL = "Select * FROM tblContent ORDER BY Name" rs.Open strSQL, strCon do while not rs.eof if count mod 2 = 0 then bgcolor = oncolor else bgcolor = offcolor end if %> </tr> <tr bgcolor="<%=bgcolor%>"> <td><span class="style6"> <% =removeHTML(rs("Name")) %> </span></td> <td><span class="style6"> <% =rs("LastEdit") %> </span></td> <td><div align="center" class="style6"><a href="page_edit.asp?Title=<% =server.URLEncode(removeHTML(rs("Name"))) %>" class="leftnavbg">Edit </a></div></td> </tr> <% rs.movenext count = count + 1 loop %> </table> try this, just change the offcolor, oncolor variables to match the colours you want.
  7. Mr.Jay

    how to make a forum

    I have started to create a forum using ASP.Firstly you need to connect to a database, i am using MS SQL.Then you need to make tables i.eTblCatsTblForumsTblTopicsTblPostson the main page you display all of the cats, then inside the cats you display all of the forums that have the affilated catid.then have a link on each forum to different page, maybe named viewtopics.aspthen show all topics with the affilated forumidthen you have a link on each topic, which goes to another page i.e viewthread.aspwhere you will display all of the posts witht he affilated topicidhope this helps
  8. Mr.Jay

    Forum

    I have been told by experts-exchange to use the last visted date against the posted dates in the forum.
  9. Mr.Jay

    New to PHP

    I don't know php so i will try and explain it in asp and hopefully you will understand enough to convert it to php.the ?t=t is known as a querystringin asp to show certain text for a certain querystring is like this<%select case request.querystring("t")' t selectedcase "t"' place code here for querystring value of t' d selectedcase "d"' place code here for querystring value of dend select%>I will look for a php version
  10. Mr.Jay

    Page redirect?

    <%' after email sentresponse.redirect("yourpage.asp")%>
  11. Mr.Jay

    Forum

    I am currently making a forum script.What is the best way to check if a user has read a post or not ??How do other forums do this ???
  12. checkouthttp://www.eq.uc.pt/~jorge/aulas/internet/ti5-codigoscor.jpg
  13. firstly you need to learn a server side language such as asp or php (i prefer asp) but others like phpthen you create a database, Access would proberly be a good place to start.Then you have a table called something like TblMembers.in that you have columns like thisUsernamePasswordEmailThen you write a script to collect the data from the html form (register page) and then you use a SQL Statement to insert that data into the database thus allowing them to login using the username, password they entered during registration.Of course you also need to learn about checking if the username already exists etc etc but thats the next step after you've learnt alot more than you do now.hope this helps.
  14. Mr.Jay

    PHP vs ASP.NET

    You do not need to learn asp first to learn asp.net but it would help you out a bit if you knew it.Yes you can download .NET Framework and start making .net applications on you computer if you have iis installed. (search .net framework on microsoft.com)SQL Databases are not like "Access" for example. MSSQL is a database on your hosting companys computer and you connect to into via an ip, username, password and send commands to update it, or use a sql tool to connect and modify on the fly.
  15. Mr.Jay

    Secure website

    MrAdam, This might not be the case, more than likely they already have it installed.Ring there customer services or email there tech support and ask abouthaving shared SSL installed and for details on it.Normally there is an option in the web hosting control panel to enable SSL, some companys allow you to add a SSL on your domain for no additional charges, some charge for this and some have a "shared ssl" which means they give u a address outside of your domain and you use that to send data encrypted and then redirect back to your site when it is done.hope this helps.
  16. Mr.Jay

    Not a JET database?

    create a new file, call it connection.asp or what ever you like,then include the file on all pages that will use the database.paste this in your new file: <%'-----------------------------------------------------------'###########################################################var_db_path = "your database path"'###########################################################'-----------------------------------------------------------' set the database connectionset db = server.createobject("adodb.connection")' open database connectiondb.open "driver={microsoft access driver (*.mdb)};" & _ "dbq=" & server.mappath(var_db_path) ' set the recordsetset rs = server.createobject("adodb.recordset")%> then, in your page you can do something like this. <%set rs = db.execute("select * from table")%> hope this helps
  17. I have a computer with XP Home, Media and ProWith XP Home you cannot see the IIS OptionWith XP Media you can see the IIS Option but it says files are missing when you try to installXP Pro works fine as we all know.
  18. what version of xp do you have ?
  19. Mr.Jay

    Shopping cart (asp)

    Is that addressed to me ??If so, what i have created is a ERP System which all of the orders go into. When the items the customer has ordered are in stock we take the payment on a PDQ machine we have with barclaycard buisness.Soon we are getting protex so payments are taken immediatly.
  20. Mr.Jay

    Shopping cart (asp)

    You honestly cant expect someone just to give you the source, you will have to buy the script off someone and get them to install it.or find a free source on the internet and install it yourself. do a search in google for free asp scriptsjust found a free script for you, not sure it its any good tho.http://www.scriptdungeon.com/script.php?ScriptID=11I made my own you can view it at http://dibor.co.ukonly took me a week to make, so if i can do it anyone can.
  21. Mr.Jay

    PHP vs ASP.NET

    Show us the video tutorial
  22. Mr.Jay

    PHP vs. ASP.NET

    Using ASP since 1999 i have an erge to edge over to asp.netNot because it is better, who am i to say its better but ASP has never let me down so it seems stupid for me not to stay with the evolve of asp to asp.net and see what happens.
×
×
  • Create New...