Click here to Skip to main content
15,892,697 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: OpenFile dialog in a HTML page Pin
Madhan Mohan Reddy P24-Sep-12 18:30
professionalMadhan Mohan Reddy P24-Sep-12 18:30 
GeneralRe: OpenFile dialog in a HTML page Pin
Killzone DeathMan26-Sep-12 0:52
Killzone DeathMan26-Sep-12 0:52 
GeneralRe: OpenFile dialog in a HTML page Pin
Madhan Mohan Reddy P4-Sep-12 19:41
professionalMadhan Mohan Reddy P4-Sep-12 19:41 
GeneralRe: OpenFile dialog in a HTML page Pin
Sandeep Mewara4-Sep-12 20:18
mveSandeep Mewara4-Sep-12 20:18 
GeneralRe: OpenFile dialog in a HTML page Pin
Madhan Mohan Reddy P4-Sep-12 20:22
professionalMadhan Mohan Reddy P4-Sep-12 20:22 
GeneralRe: OpenFile dialog in a HTML page Pin
Sandeep Mewara4-Sep-12 20:24
mveSandeep Mewara4-Sep-12 20:24 
QuestionHow to add a dynamic file(text) contents to a text area in the same form without submitting the form(using JSP) Pin
ethanlokesh4-Sep-12 10:45
ethanlokesh4-Sep-12 10:45 
AnswerRe: How to add a dynamic file(text) contents to a text area in the same form without submitting the form(using JSP) Pin
Mohibur Rashid9-Sep-12 20:33
professionalMohibur Rashid9-Sep-12 20:33 
here asp, jsp or php none of them has to do anything.

You want to open and see your file in your browser. But browser don't allow accessing local file in the browser. what you can do?

you can write a simple code to post data to server and display it in your textarea:

C++
//javascript to post file
<script>
function Upload()
{
	$("#fileuploader").submit();
}
</script>
<form name=fileuploader id=fileuploader method=post action='webapp/lib/uploads/uploadelaox.php' enctype="multipart/form-data" target='UploadedFrame'>
<input type='file' name='csv' id='csv' onchange='Upload();' Title='Select File Name'>

</form>
<iframe id='UploadedFrame' style='display:none' onload='write_a_function_to_move_all_loaded_text_to_your_text_area()' name='UploadedFrame' ></iframe>



now in your server side verify and do the process to transfer data.
This Signature Panel is available for advertisement.
How to contact: go outside and yell my name.
p.s. If I don't reply, then your offer is not tempting

QuestionPop in php..Displaying div after successful execution of php Pin
Sheeshkamal1-Sep-12 9:22
Sheeshkamal1-Sep-12 9:22 
AnswerRe: Pop in php..Displaying div after successful execution of php Pin
Joan M2-Sep-12 21:04
professionalJoan M2-Sep-12 21:04 
AnswerRe: Pop in php..Displaying div after successful execution of php Pin
WebMaster6-Sep-12 20:35
WebMaster6-Sep-12 20:35 
Questionconnect to facebook Pin
Member 82146351-Sep-12 4:26
Member 82146351-Sep-12 4:26 
AnswerRe: connect to facebook Pin
Richard Andrew x641-Sep-12 8:42
professionalRichard Andrew x641-Sep-12 8:42 
AnswerCrossPost Pin
Sandeep Mewara1-Sep-12 10:42
mveSandeep Mewara1-Sep-12 10:42 
QuestionIndexed Db vs WebSql Data (SQLITE) Pin
gaurish thakkar29-Aug-12 2:41
gaurish thakkar29-Aug-12 2:41 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
Eddy Vluggen29-Aug-12 3:03
professionalEddy Vluggen29-Aug-12 3:03 
GeneralRe: Indexed Db vs WebSql Data (SQLITE) Pin
gaurish thakkar29-Aug-12 17:59
gaurish thakkar29-Aug-12 17:59 
GeneralRe: Indexed Db vs WebSql Data (SQLITE) Pin
Eddy Vluggen29-Aug-12 22:29
professionalEddy Vluggen29-Aug-12 22:29 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
jkirkerx29-Aug-12 11:35
professionaljkirkerx29-Aug-12 11:35 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
Bernhard Hiller29-Aug-12 21:32
Bernhard Hiller29-Aug-12 21:32 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
Zaf Khan19-Nov-12 17:49
Zaf Khan19-Nov-12 17:49 
QuestionExample of HTML5 File Api for Read/Write Pin
gaurish thakkar20-Aug-12 17:43
gaurish thakkar20-Aug-12 17:43 
AnswerRe: Example of HTML5 File Api for Read/Write Pin
fjdiewornncalwe21-Aug-12 3:20
professionalfjdiewornncalwe21-Aug-12 3:20 
QuestionLooking for a web developer in or near Linksfield, Johannesburg, SA Pin
Imagin8 SA17-Aug-12 22:25
Imagin8 SA17-Aug-12 22:25 
AnswerRe: Looking for a web developer in or near Linksfield, Johannesburg, SA Pin
Richard MacCutchan17-Aug-12 23:25
mveRichard MacCutchan17-Aug-12 23:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.