Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. pulpfiction

    install

    Hi,I guess EasyPHP will be useful to you.Just "google" for "download easyphp".
  2. well, after infinite number of tries, i could get it to 927.6.
  3. Hi,Look for "Scroll Menu Links from both sides" in the link below....http://jdstiles.com/java/scrollscripts.html
  4. pulpfiction

    java

    i guess this is pretty much web development based tutorials/Forums. but would be cool if there was Java etc......
  5. pulpfiction

    Datagrid

    Hi bushan, i guess your problem is different frm mine, anyways try doing this...in the top of the HTML page you will find somthing like this add the bold part.<%@ Page language="vb" smartnavigation="true"this will make your page stay in the position where it was clicked......
  6. pulpfiction

    Datagrid

    hi,Finally sorted out, propably may not be the best of the solutions, but stillby using iframes, and when i click the hyperlinkcolumn in the top dg then using javascript i can populate the lower dg and display it, since its iframes the postback in one frame will not affect the other. If any other better method to handle this, pls suggest thank you.
  7. About the Problem2 you can use "iframes" left side will have links which when clicked will display pages on the right.<table><tr><td>This is the Menu <br><a href="LondonBridge.htm" target="iframe1">London Bridge</a><br><a href="somthing.htm" target="iframe1">somthing</a></td><td width="220" valign="top"><p align="center"><iframe name="iframe1" src="Initial_page.htm" align="top" height="100" width="400" hspace="10" vspace="10">If you can see this, your browser does not support iframes! </iframe></p></td></tr></table>
  8. Check out this for code to upload the file.http://www.asp101.com/articles/jacob/scriptupload.aspto view the uploaded file /uploadfoldername/filename
  9. http://w3schools.invisionzone.com/index.ph...wtopic=2732&hl=
  10. if you need from setup1. run the easyphp.exe setup file,2. it will ask you for destination folder etc such simple steps.3. If all went well - congratulations! Apache, PHP and MySQL are all installed and running! You should see a black E in your toolbar tray. You can right click on it to get a menu which will let you control the running programs, but you won't be needing that for now. Already setup, to test a file.To test create a php file (eg:test.php)<? echo "Hello World" ?>goto the easyphp folder and look for the "www" folder (could be a sub folder i dont remember exactly ). Copy the test.php in that folder.type "http://localhost/test.php" in the browser. if you get "hello world" success!!!make sure easyphp is running when you try run php file....
  11. C:\Program Files\Apache Group\Apache2\htdocs\mail.php
  12. pulpfiction

    Datagrid

    hi guys,using asp.net/vb. i am using two datagrid one below the other, the top dg has a list, when i click the list the details is shown in the second dg. The problem is the top dg has multiple pages and when i go to the second page and click the item, the lower dg displays the details perfectly but the top dg goes to the first page, how can i make the top dg stay in the same page.....
  13. did you check the code for blank spaces before and after the <? ... ?>? cos i cant check it here.
  14. Javascriptfunction disable(s) { if (s.checked == true) document.getElementById("sub").disabled=false }HTML<input type=radio name="r" onclick="disable®"><input type=button value="submit" id="sub" disabled=true>
  15. The "headers already sent" error is usually caused by having white space before or after the opening and closing PHP tags (<?php . . . ?>).http://forum.mamboserver.com/showthread.php?t=49427
  16. Code Looks pretty much fine.To check test with simple direct mail id's<% Set Mail=Server.CreateObject(“CDONTS.NewMail”) Mail.To=”me@mydomain.com” Mail.From=”testing-my@SP-Script.com” Mail.Subject=”Just testing my script” Mail.Body=”Hey! I am sending this email through an ASP Page and guess what? I haven’t learnt much yet, but know that ASP is very powerful.” Mail.Send Set Mail=nothing %>HTH
  17. pulpfiction

    websurvey

    try doing this...<body onload="doSurvey(ID)">ID will be the primarykey/Identity got when you create a new survey.
  18. its got "cout","cin" etc so a cool C++ program..... Nice
  19. Hi guys,How can change the border color of a HTML dropdownlist.I mean when i am using <select>/<option> tags.
  20. use this in javascriptwindow.open('formname.php?id1=value1&id2=val2', 'popup', 'width=400,height=308,left=200,top=250'and GET the values in the popup window using PHP.
  21. you will be populating the datagrid during the Page_Load. Check if you are doing that inside this PostBack condition. If not try doing it.Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.LoadIf Not (IsPostBack) Then' Code to Populate DatagridEndIFEnd SubWhen the Update button is clicked then the page is posted back, and if you populating without checking the postback then the DG will be populated frm DB and thats why u are getting the old Data again.
  22. Check out this link http://www.w3schools.com/css/pr_gen_content.asp
  23. pulpfiction

    login help

    Can you post the code? it will be easy to locate the error
  24. I actually didnt go througt the article completely, got it in google, but the heading sounded little related so give it a try. http://support.microsoft.com/default.aspx?...kb;en-us;288328
  25. pulpfiction

    login help

    This should give you an idea, look for the example in the bottom of the pagehttp://www.w3schools.com/php/php_db_odbc.asp
×
×
  • Create New...