Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. I guess jorsh wants somthing like in these sites...http://www.regular-expressions.info/http://www.amk.ca/python/howto/regex/
  2. oh yeah, never thought abt that.
  3. Hi guys, sorry gave a wrong suggestion..
  4. hi keeneyelearner,Sorry frnd, i have no knowledge in web services...
  5. Hi,Check out this link, hope this is what you wanted.....http://aspnet.4guysfromrolla.com/articles/060805-1.aspx
  6. pulpfiction

    PHP My Admin

    If you are asking what php admin is, then....phpMyAdmin is a web interface to the popular database MySQL, and is written in PHP. phpMyAdmin comes installed with many web hosting accounts, but can be installed yourself if not.phpMyAdmin allows you to login to an administration section and manage your databases, browse their data, run SQL commands, and backup the structure and data stored in your MySQL databasesPHP MyAdmin Site
  7. pulpfiction

    asp.net

    Hi Abeetha,Check out this site, http://msdn2.microsoft.com/en-us/library/3...zw6(VS.80).aspx
  8. pulpfiction

    hello

    Hi,One thing you can do is to write a function in the "dconn_rla.asp" and call the function in the current page but still cant get it off onclick....But with submit button you can reload the page and get the function to be called,check and decide about the redirect.
  9. Hi Viswa, check out this link,http://www.suite101.com/article.cfm/javascript/61279
  10. pulpfiction

    image help

    HiYou can do this in ASPWrite a SQL query to get the jpeg image reference and store it in some variable eg: IMGNAME, then write as below.<img src"<%=IMGNAME%>" />
  11. This is just one of them, you can get many useful links, just google for "marquee tag"http://www.scit.wlv.ac.uk/encyc/marquee.html
  12. pulpfiction

    validations

    Hi,Do u want to check if the field has ONLY alphabet, then this is the regex validation<asp:RegularExpressionValidator Runat=server ControlToValidate="txtboxid" ErrorMessage="errmsg" ValidationExpression="^[A-Za-z]*">*</asp:RegularExpressionValidator>HTH
  13. this is what w3schools site says,Mozilla Firefox and the alt AttributeIf you use the alt attribute in Firefox on images and image maps the text will not show on mouse-over as in other browsers.Firefox uses the alt attribute the way it's meant to be used, like an alternative text if the image won't load, not as a mouse-over text.Firefox does support mouse-over comments on images or image maps if you use a title attribute in the <img> tag.E.g. <img src="image.gif" alt="bla" title="bla bla blahttp://www.w3schools.com/tags/tag_img.asp
  14. hi boenI guess dj wants the sub1's height to be 20px and the sub2 to take up the rest...
  15. hi dj, sorry gave u wrong info, my bad
  16. Hi,try Height:100% in the sub2
  17. pulpfiction

    final hurdle

    dim uname,SQLuname=session("MM_Username")SQL = "SELECT * FROM TBLCustomer WHERE username='" & uname & "'"Try this statement, to check if the statement is correct, jus print the statement and see if it comes out correct....response.write(SQL)HTH
  18. Hi Matt, you can also download and try using EasyPHP, it has apache server along with MySql. i guess u'll need a DB for ur project...
  19. pulpfiction

    PHP To ASP.NET

    Hi Vijay,With experience in VB6, i guess it will be easy to work on VB.NET because its similar, but ASP.NET will be completly different from PHP. One good thing is that as you are alredy experienced in PHP (web programming) i guess you will be clear about the concepts of server/client scripting etc. so its definitly going to be easy to adapt. you can also try using VS 2003, helps you in learning asp.net faster...
  20. Html:<select onChange="return Jump(this);"><option value="search.htm">Trainers</option>java script:function Jump(fe){ var opt_key = fe.selectedIndex; var uri_val = fe.options[opt_key].value; window.open(uri_val,'_top'); return true; }This code will make the drop down list a navigational menu. when "Trainers" is selected the page will redirect to search.htm, I guess this is only a part of the solution for what you had asked for.
  21. If you are planning to use it realtime, another issue would be security, because you will be dealing with credit card information etc. But if you are doing it for learning purpose, security will not be a major factor.
  22. Hi, You just have to write the class file under a namespace and import that namespace in the page. it will workwrite imports classfileNamespace on the top of the page.
  23. Hi,Be it a table in the any database (in your case MS Access), it will contain fields (columns) so, and each of this column will have a name (fieldname).When you want to store any information in the table you can access based on the fieldname...... Check out this link for more info..http://www.webwizguide.info/asp/tutorials/..._a_database.asp
  24. I guess you will have to reload the pageB from the pageA, one way to do it isJavascript in Page Afunction Jump(value){parent.document.PageB.location.href = 'pageB.php?index=1&variable='+value;}
  25. Try this....Str_Scroll = Str_Scroll & "<BR />" & rs.fields(0)
×
×
  • Create New...