Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kurie
  • Content: Threads
  • Order by date
  1. kurie

    PHP LOGIN Page Recommendation

    Hi all, im bettling with creating a PHP login page, if i use re-direct from a login page all the session variables will be cleared. Is there a better way to do this. <code> $_SESSION["myusername"] =$username; $_SESSION["credit"] =$credit; $_SESSION["companyid"] =$cid; //echo "success"...
  2. kurie

    Simple SQL Select

    1. i would like to select all records and where customers have more than 1 Address return the Address with the Address Type = ‘Postal’. Can anyone please help with the above question. CREATE TABLE `bulksms`.`tblContact` ( `ipkContact` INT NOT NULL , `ifkContactType` varchar(10) , `FirstName`...
  3. kurie

    SQL Escape in C#

    Can anyone please help with a function that will accept a string as a parameter and will replace all occurrences of the “’” (apostrophe\single quote) character with the valid SQL equivalent i.e. escape the single quote to be used in a SQL statement. And then return the correctly formatted...
  4. kurie

    Submit on the same page

    Good day all, does anyone know what im doing wrong here, i have a page, and on that i would like to submit a button and check if the button has been submited, on the same page, i dont want to navigate to another page on submit. here is the code. Regards <?php echo "here...
  5. kurie

    PHP and Jquery

    Hi all, Does anyone know of a good webpage with turials on how to sellect data from mysql and display on a page using jquery and php. I want to fetch and display every 30sec without page refresh. Thanks so much Regards
  6. kurie

    SOAP Error on Sending with SAAJ0537

    Hi all, Does anyone know what might be causing this error message when i try to send a SOAP Request. com.sun.xml.messaging.saaj.soap.MessageImpl identifyContentType SEVERE: SAAJ0537: Invalid Content-Type. Could be an error message instead of a SOAP message...
  7. kurie

    How to send a SOAP Request

    How do i send a Soap request like the below in Java. Links to SOAP for newbies will be much appreciated as well. Regards POST /Quotation HTTP/1.0 Host: www.xyz.org Content-Type: text/xml; charset=utf-8 Content-Length: nnn <?xml version="1.0"?> <SOAP-ENV:Envelope...
  8. kurie

    Parse an XML Doc

    given the following XML doucument, how do i get the value of AckRes using Java, "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \n"+ " <AAA> \n" + " <Acknowledge type=\"ReqAck\"> \n"+ " <AuthReqRef>88888</AuthReqRef> \n"+...
  9. kurie

    tabctl32 on windows 7

    hi all, im trying to register a ocx control tabctl32 on a windows 7 machines to run vb6. if i run this command regsvr32 command, it finishes succesfully but if i go on a tab its still returnig the error message that the control is missing. im running as an administrator. is there anything else i...
  10. kurie

    Outlook Forms

    i would like to write an Outlook 2010 form. i have added custom controls(ctr1, ctr2) on the form, and have written a macro to read the values. i wld like to append the custom controls values to the message body; message = message & ctr1 & ctr2. and have added this to the onsend event of the...
  11. kurie

    Synchronizing exchange pst Calender with MailBox Calender

    I have a PST file that serves as my default data file for mail in Outllok 2007/2010. When I connect to through my company's Exchange Server, all of my mail, etc., is transferred to my personal PST file. A bad side effect thous is that all my Outlook calendar items are not visible on the...
  12. kurie

    Next Previous Last Arrows

    Hi ALL In asp.net how do i program code for next, previous arrows for SQL Server. I have done it with MYSQL before and its easier beacuse of the limit function in MySQL. does anyone know how im suppose to do it for SQL SErver. Thanks you
  13. kurie

    suppress a section using code

    Hi all, How do i supress a section using code in crystal reports. I need to add a page aftre a section but i would like to supress some sections as well on the page break, eg details sectiona and the header section, i dont want them to appear on the page break. i hope my question is clear thanks
  14. kurie

    Reporting taking too long to load

    Hi all, im using asp to load crystal reports,using this code to call the report Session("oClientDoc").Open ReportPath. it works fine on all reports but one. its taking to long to load this report about 30 seconds. i put a response.end after this line and it takes 30 seconds to get to...
  15. kurie

    Using fileUploade

    Im tring to use the fileupload control in vb.net 2008. Unfortunately when i upload something the code always indicate there is nothing. this is how im doing it txtAttachment.SaveAs(Server.MapPath(".\") & txtAttachment.FileName) or txtAttachment.PostedFile.SaveAs(Server.MapPath(".\") &...
  16. kurie

    DropDown not populating All records

    i have a problem with a dropdown box in Ver3.5. My dropdown is replacing all values with the last record to be read from the datareader. if theere are 5 records, all the values will be the last one to be read. does anyone see what im doing wrong here. here is the code Dim cboItem As New...
  17. kurie

    create ASP.NET website on windows 2000 server IIS 5

    Hi all What do i have to install on windows 2000 server IIS 5 to run asp.net website. and what steps do i follow. Thanks
  18. kurie

    web services obs values

    how do i return the value for a response in webservices, if i post a request through php's curl i get a value of 1 as response say curl_setopt($curl, CURLOPT_POSTFIELDS, post_body); curl_setopt($curl, CURLOPT_TIMEOUT, 30); $xmlResponse = curl_exec($curl) echo...
  19. kurie

    How to Create a News Article

    I would like to create a news article following instructions from this blog http://faraz-khan.blogspot.com/2008/10/moss-creating-custom-news-page-layouts.html but my problem is i cant find parent type "Article Page" on the gallary. In other words it doesnt display ie under Site Content Types...
  20. kurie

    Change image to display

    Hi All Intranet- I would like to change the default image, say for Documents. Under Documents i have diferent groups, like CEO's Desk, IT Corner etc, what i would like to do is assign an image for each and every sub-document group. eg CEO's Desk grouping must have its own image, IT group must...

Part and Inventory Search

Back
Top