Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached

7 Posted Topics

Member Avatar for priyanka31

You need to post **some part of your code** so that people here not only see your effort in the regard, but also help you in detail :) Following is a link which I hope will help you: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.selectedrow.aspx

Member Avatar for amy2389
0
75
Member Avatar for rexdon

You need to install XML Tools if not installed yet: 1. Go to Plugins -> Plugin Manager -> Show Plugin Manager and then look for XML Tools and install it. 2. Once installed, then you can either hold clt+alt+shift+b together OR go to Plugins -> XML Tools -> Pretty Print. …

Member Avatar for amy2389
0
204
Member Avatar for Member #593255

I think you should be using $_SESSION instead of $_COOKIES. There is slight difference between the two; cookies retain information until deleted whereas sessions retain information till browser is active. Try doing this if it fulfills all your requirements.

Member Avatar for adam.adamski.96155
1
124
Member Avatar for phorce

The page you are echoing it on, should have the basic html tags too like : > <html> > <head></head> > <body></body> > </html> And echo it in the body. I hope this helps.

Member Avatar for broj1
0
99
Member Avatar for amy2389

require_once(LIBRARY_PATH . "phpmailer.php"); require_once(CONFIG_PATH . "emailconfig.php"); class email { public function sendMail($from,$fromname,$subject,$content,$to){ $mail = new PHPMailer(); $mail->SMTPAuth = SMTPAuth ; $mail->IsSMTP(); $mail->SMTPSecure = SMTPSecure; $mail->Host = Host; $mail->Port = Port; $mail->Username = Username; $mail->Password = Password; $mail->From = $from; $mail->FromName = $fromname; $mail->Subject = $subject; $mail->Body = $content; $mail->AddAddress($to); $mail->IsHTML(true); …

Member Avatar for pritaeas
0
376
Member Avatar for amy2389

i want to buy an rfid reader for my final year project. if someone can tell the names of companies in pakistan which deal in rfid products.

Member Avatar for jyd
0
56
Member Avatar for amy2389

how can we read data from serial port,if data is arriving continuously. the hardware sending the serial data includes microcontroller and max232. the software to access the data is a website made using visual studio 2005(c#). if someone has worked and has successfully received data serially, please help.

Member Avatar for dnanetwork
0
79

The End.