Technical question??

  • Thread starter Thread starter perspolis
  • Start date Start date
P

perspolis

Hi all
I faced a problem and that is I have a database on my website and I want to
insert into that database from my application .I know I can connect to that
database directly but it's not secure.
I think of having a script in my site that gets info and insert into that
database.
but I don't know how can I send info from my application to that script?.
I want to send image and string info..
thanks in advance :)
 
if you need to talk to the db via script, one good option is to use the
xml-http pathway. you can have a google for it, there are lots of snippets
out there on how to do that. Or you can call a webservice to do the dirty
work for you. if you store the webservice implementation on a secure server,
your application should secure because of the extra tier.

--
Regards,
Alvin Bruney - ASP.NET MVP

[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
Now available @ www.lulu.com/owc, Amazon.com etc
 
what's your opinion if you want to insert into database from your
application??

Alvin Bruney said:
if you need to talk to the db via script, one good option is to use the
xml-http pathway. you can have a google for it, there are lots of snippets
out there on how to do that. Or you can call a webservice to do the dirty
work for you. if you store the webservice implementation on a secure server,
your application should secure because of the extra tier.

--
Regards,
Alvin Bruney - ASP.NET MVP

[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
Now available @ www.lulu.com/owc, Amazon.com etc
perspolis said:
Hi all
I faced a problem and that is I have a database on my website and I want
to
insert into that database from my application .I know I can connect to
that
database directly but it's not secure.
I think of having a script in my site that gets info and insert into that
database.
but I don't know how can I send info from my application to that script?.
I want to send image and string info..
thanks in advance :)
 
Back
Top