Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Posts posted by pulpfiction

  1. 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

    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.

  2. 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%>" />

  3. 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

  4. 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

  5. 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

  6. 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...

  7. 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.

  8. 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.

×
×
  • Create New...