Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. pulpfiction

    login help

    Put it in the starting of the PHP code. after the body tag and above the if statement.
  2. This is definitly a lengthy work around, just take a look at ithttp://www.designdetector.com/2005/09/css-gradients-demo.php
  3. I am not pretty sure, but try doing this if you are connecting from internet, try change the IIS "File security properties", goto the Authentication Methods, uncheck "Integrated Windows Authentication" also see if only "anonymous access" is checked.
  4. pulpfiction

    login help

    you have to save it as .php
  5. i am guessing you want to know how to disable caching in IE, if thats what you want, check out this site.http://support.packeteer.com/documentation.../2.0/test03.htm
  6. check out this site too.http://support.microsoft.com/?scid=kb;en-u...id=2509&sid=285
  7. i think using text editor will help you a lot. Practice but the first few times it will appear you are lost, then look at some tutorials or other sites, but as you go on you will automatically adapt and you will remember the tags.
  8. Hi,The popup blocker options in IE has 3 levels of blocking, default is Medium - Most popups are blocked, try changing that option to HIGH- to block all popups. I guess this should be the reason.
  9. pulpfiction

    SQL Question

    Well I guess by add you mean Concatenate two string, if thats what you want, check out the link below.http://sqlzoo.net/howto/source/z.dir/tip725372/i08fun.xml
  10. Check out this link,http://www.w3schools.com/asp/asp_send_email.aspIf you have a textbox to get the subject, then domyMail.Subject=Textbox1.Text
  11. pulpfiction

    Update

    This should work, replace the number '123456' with the field,SELECT RIGHT('00' + CONVERT(VARCHAR(6), '123456'), 8) AS LeftPaddedWithTwoZero
  12. Hi,How can i get the list of available "properties" in the Active Directory with LDAP using VB.NET.TIA
  13. I guess you are checking not to allow special characters, try this code.Dim regExp As Regex Dim regMatch As Match regExp = New Regex("[A-Za-z0-9]") dim str as string="%" regMatch = regExp.Match(str) If (regMatch.Success And regMatch.Value = str) Then Response.Write("Success") Else Response.Write("Failed") End If
  14. pulpfiction

    Microsoft Access

    Try doing this, USERNAME = request.form("usern")PASSWORD = request.form("passw")SQL = "SELECT * FROM Table_Name, WHERE (fldUSERNAME ='" & USERNAME & "') AND (fldPASSWORD ='" & PASSWORD & "')"Set RS = MyConn.Execute(SQL) 'Execute queryIF NOT RS.EOF THEN 'Check if any record existsresponse.write "You Are Now Login As An User"ELSEresponse.write "Incorrect Login Info"
  15. Try this out....function replaceChars(entry) { out = "a"; // replace this add = "z"; // with this temp = "" + entry; // temporary holder while (temp.indexOf(out)>-1) { pos= temp.indexOf(out); temp = "" + (temp.substring(0, pos) + add + temp.substring((pos + out.length), temp.length)); } document.Form1.text.value = temp; }<input type=text name=text size=40 value="abcdabcd"><input type=button name=action value="Click" onClick="replaceChars(document.Form1.text.value);">
  16. JavaScript Function:function test(id){ if(document.getElementsByTagName) { var table = document.getElementById(id); table.className="test"; //CSS Classname }}CssClass:.test{ text-align:center; }HTML:<body onload="test('trial')">.......<table id="trial">.......Hope this is what you were looking for......
  17. Hi, <INPUT style="WIDTH: 10%; ALIGN: left" TYPE="submit" NAME="PREV" VALUE="Prev"><INPUT style="WIDTH: 45%; ALIGN: center" TYPE="submit" NAME="REFR" VALUE="Refresh"><INPUT style="WIDTH: 10%; ALIGN: RIGHT" TYPE="submit" NAME="NEXT" VALUE="Next"> As far as I know "ALIGN:" will not work for buttons, it will work for images,To position in the center you can use somthing like this,style="Z-INDEX: 101; LEFT: 848px; WIDTH: 10%; POSITION: absolute; TOP: 296px;"
  18. Hi,Javascript is a client side scripting language and the DB will be in the server. so you wil need a server side scripting language (ASP, PHP,....) to connect to DB to get and update data.
  19. Do you want to calculate the age? Thencheck out this linkhttp://w3schools.invisionzone.com/index.php?showtopic=2038
  20. Hi John, As you have knowledge in VBScript using ASP will be easier, with a little bit of Javascript (somtimes) you can build a pretty tidy site.
  21. I have worked on Crystal Reports in ASP.NET, is it possible to use it with PHP, any links about that will direct me. TY
  22. I got a breakthrough but not sufficient, able to display Names and few other things from the contact list but when I try to display the email id's the page gets stuch in the loading page..... I am more confused now.
  23. Ok i guess you can help me out with this, could it be a security or access restriction when the page gets stuck in the loading stage....(with the above code)
  24. Well tried that too, nobody cared to answer there...
  25. Thanks a lot for all the effort.....
×
×
  • Create New...