473,734 Members | 2,211 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

using html control to download file from client to server

Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))

These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 2 '06 #1
10 2262
Are these Month and Year JScript variables.

Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.

If you need syntax for that please let me know.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
"Paul" wrote:
Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))

These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 2 '06 #2
hi thanks for the response. Yes these are jscript variables. Yes if you
could provide syntax for processing of forming the path and file name (that
needs to be done on the server). Doesn't the javascript run on the client
machine?
thanks again,
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
Are these Month and Year JScript variables.

Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.

If you need syntax for that please let me know.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
"Paul" wrote:
Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))

These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 2 '06 #3
actually I am running the script on the server I think,
<script language="javas cript" runat="server">
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
Are these Month and Year JScript variables.

Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.

If you need syntax for that please let me know.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
"Paul" wrote:
Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))

These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 2 '06 #4
You have to do the following to make it work -
1. On the HTMLInputFile set the runat property to server.
2. Add another button called upload.
3. In Click event on the server side for upload write the following
functionality -
MyFile.PostedFi le.SaveAs("c:\t emp\" & ...your logic to create the file based
on your requirements)

Please let me know if the above helps.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
"Paul" wrote:
actually I am running the script on the server I think,
<script language="javas cript" runat="server">
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
Are these Month and Year JScript variables.

Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.

If you need syntax for that please let me know.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
"Paul" wrote:
Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))
>
These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 2 '06 #5
Hi thanks for the additional information. I think I almost have it working
but am having syntax issues building the MyFile.PostedFi le.SaveAs("c:\t emp\"
& ...your logic to create the file based on your requirements) line. I am
trying to build the path dynamically and have 2 dropdown boxes but can not
seem to get the selected value from these to append the path in the line
MyFile.PostedFi le.SaveAs(). For the dropdown year box I have
<select name="year_drop down">
<option value="2007" selected>2007</option>
<option value="2008">20 08</option>
<option value="2009">20 09</option></select></p>
so when the file is saved I want it to go to (c:\2007\filena me) if 2007 is
selected for example. I am doing the same thing with the month that is
selected.
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
You have to do the following to make it work -
1. On the HTMLInputFile set the runat property to server.
2. Add another button called upload.
3. In Click event on the server side for upload write the following
functionality -
MyFile.PostedFi le.SaveAs("c:\t emp\" & ...your logic to create the file based
on your requirements)

Please let me know if the above helps.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
"Paul" wrote:
actually I am running the script on the server I think,
<script language="javas cript" runat="server">
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
Are these Month and Year JScript variables.
>
Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.
>
If you need syntax for that please let me know.
>
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
>
>
"Paul" wrote:
>
Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))

These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 2 '06 #6
Make your selects into <asp:DropDownLi st runat=server or at least make
them runat=server.

Otherwise the data isn't available server-side except through the
Request or Request.Form hashes.

string val = Request.Form("y ear_dropdown");
if (val != null)
{ ...

DropDownList has a SelectedValue property.
Paul wrote:
Hi thanks for the additional information. I think I almost have it working
but am having syntax issues building the MyFile.PostedFi le.SaveAs("c:\t emp\"
& ...your logic to create the file based on your requirements) line. I am
trying to build the path dynamically and have 2 dropdown boxes but can not
seem to get the selected value from these to append the path in the line
MyFile.PostedFi le.SaveAs(). For the dropdown year box I have
<select name="year_drop down">
<option value="2007" selected>2007</option>
<option value="2008">20 08</option>
<option value="2009">20 09</option></select></p>
so when the file is saved I want it to go to (c:\2007\filena me) if 2007 is
selected for example. I am doing the same thing with the month that is
selected.
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
You have to do the following to make it work -
1. On the HTMLInputFile set the runat property to server.
2. Add another button called upload.
3. In Click event on the server side for upload write the following
functionality -
MyFile.PostedFi le.SaveAs("c:\t emp\" & ...your logic to create the file based
on your requirements)

Please let me know if the above helps.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
"Paul" wrote:
actually I am running the script on the server I think,
<script language="javas cript" runat="server">
--
Paul G
Software engineer.
>
>
"Ameet Phadnis" wrote:
>
Are these Month and Year JScript variables.

Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.

If you need syntax for that please let me know.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.


"Paul" wrote:

Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))
>
These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 3 '06 #7
thanks for the additional information. I have the following for the dropdown
list
so not quite sure why I am still not able to get the values. I am trying to
get the values in a javascript section that is called when the use clicks a
button. Also for the javascript I have it running on the server,
<script language="javas cript" runat="server">
*************be low dropdown box description.
<asp:DropDownLi st id="DropDownLis t1" runat="server">
<asp:ListItem Value="07">2007 </asp:ListItem>
<asp:ListItem Value="08">2008 </asp:ListItem>
<asp:ListItem Value="09">2009 </asp:ListItem>
</asp:DropDownLis t>
--
Paul G
Software engineer.
"Russell" wrote:
Make your selects into <asp:DropDownLi st runat=server or at least make
them runat=server.

Otherwise the data isn't available server-side except through the
Request or Request.Form hashes.

string val = Request.Form("y ear_dropdown");
if (val != null)
{ ...

DropDownList has a SelectedValue property.
Paul wrote:
Hi thanks for the additional information. I think I almost have it working
but am having syntax issues building the MyFile.PostedFi le.SaveAs("c:\t emp\"
& ...your logic to create the file based on your requirements) line. I am
trying to build the path dynamically and have 2 dropdown boxes but can not
seem to get the selected value from these to append the path in the line
MyFile.PostedFi le.SaveAs(). For the dropdown year box I have
<select name="year_drop down">
<option value="2007" selected>2007</option>
<option value="2008">20 08</option>
<option value="2009">20 09</option></select></p>
so when the file is saved I want it to go to (c:\2007\filena me) if 2007 is
selected for example. I am doing the same thing with the month that is
selected.
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
You have to do the following to make it work -
1. On the HTMLInputFile set the runat property to server.
2. Add another button called upload.
3. In Click event on the server side for upload write the following
functionality -
MyFile.PostedFi le.SaveAs("c:\t emp\" & ...your logic to create the file based
on your requirements)
>
Please let me know if the above helps.
>
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
>
>
"Paul" wrote:
>
actually I am running the script on the server I think,
<script language="javas cript" runat="server">
--
Paul G
Software engineer.


"Ameet Phadnis" wrote:

Are these Month and Year JScript variables.
>
Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.
>
If you need syntax for that please let me know.
>
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
>
>
"Paul" wrote:
>
Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))

These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.

Oct 3 '06 #8
The statement below seems to work so will just use it, thanks.
year= Request.Form("D ropDownList1");
--
Paul G
Software engineer.
"Russell" wrote:
Make your selects into <asp:DropDownLi st runat=server or at least make
them runat=server.

Otherwise the data isn't available server-side except through the
Request or Request.Form hashes.

string val = Request.Form("y ear_dropdown");
if (val != null)
{ ...

DropDownList has a SelectedValue property.
Paul wrote:
Hi thanks for the additional information. I think I almost have it working
but am having syntax issues building the MyFile.PostedFi le.SaveAs("c:\t emp\"
& ...your logic to create the file based on your requirements) line. I am
trying to build the path dynamically and have 2 dropdown boxes but can not
seem to get the selected value from these to append the path in the line
MyFile.PostedFi le.SaveAs(). For the dropdown year box I have
<select name="year_drop down">
<option value="2007" selected>2007</option>
<option value="2008">20 08</option>
<option value="2009">20 09</option></select></p>
so when the file is saved I want it to go to (c:\2007\filena me) if 2007 is
selected for example. I am doing the same thing with the month that is
selected.
--
Paul G
Software engineer.
"Ameet Phadnis" wrote:
You have to do the following to make it work -
1. On the HTMLInputFile set the runat property to server.
2. Add another button called upload.
3. In Click event on the server side for upload write the following
functionality -
MyFile.PostedFi le.SaveAs("c:\t emp\" & ...your logic to create the file based
on your requirements)
>
Please let me know if the above helps.
>
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
>
>
"Paul" wrote:
>
actually I am running the script on the server I think,
<script language="javas cript" runat="server">
--
Paul G
Software engineer.


"Ameet Phadnis" wrote:

Are these Month and Year JScript variables.
>
Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.
>
If you need syntax for that please let me know.
>
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
>
>
"Paul" wrote:
>
Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))

These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.

Oct 3 '06 #9
This is the Legacy ASP way. With .NET you have to use
dropdownlist1.s electedvalue.

Let me get the working code to you sometime today.
--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.
ASP Alliance Author Page: http://aspalliance.com/author.aspx?uId=44260
"Paul" wrote:
The statement below seems to work so will just use it, thanks.
year= Request.Form("D ropDownList1");
--
Paul G
Software engineer.
"Russell" wrote:
Make your selects into <asp:DropDownLi st runat=server or at least make
them runat=server.

Otherwise the data isn't available server-side except through the
Request or Request.Form hashes.

string val = Request.Form("y ear_dropdown");
if (val != null)
{ ...

DropDownList has a SelectedValue property.
Paul wrote:
Hi thanks for the additional information. I think I almost have it working
but am having syntax issues building the MyFile.PostedFi le.SaveAs("c:\t emp\"
& ...your logic to create the file based on your requirements) line. I am
trying to build the path dynamically and have 2 dropdown boxes but can not
seem to get the selected value from these to append the path in the line
MyFile.PostedFi le.SaveAs(). For the dropdown year box I have
<select name="year_drop down">
<option value="2007" selected>2007</option>
<option value="2008">20 08</option>
<option value="2009">20 09</option></select></p>
so when the file is saved I want it to go to (c:\2007\filena me) if 2007 is
selected for example. I am doing the same thing with the month that is
selected.
--
Paul G
Software engineer.
>
>
"Ameet Phadnis" wrote:
>
You have to do the following to make it work -
1. On the HTMLInputFile set the runat property to server.
2. Add another button called upload.
3. In Click event on the server side for upload write the following
functionality -
MyFile.PostedFi le.SaveAs("c:\t emp\" & ...your logic to create the file based
on your requirements)

Please let me know if the above helps.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.


"Paul" wrote:

actually I am running the script on the server I think,
<script language="javas cript" runat="server">
--
Paul G
Software engineer.
>
>
"Ameet Phadnis" wrote:
>
Are these Month and Year JScript variables.

Typically, you would write the upload function in your server side script.
All the processing of forming the path and file name needs to be done on the
server.

If you need syntax for that please let me know.

--
Ameet Phadnis
Sr. Technical Consultant
e Tek Global Inc.


"Paul" wrote:

Hi I am using the HtmlInputFile control to upload a file from a client to a
server. I have a browse to find the file on the server but need to create
the path dynamically as to were it will go based on some dropdown boxes, one
for the year and one for the month. This line saves the file so I am trying
to get the month and year from the dropdown boxes and put them in the month
and year variables but this does not work,
File1.PostedFil e.SaveAs(("c:\\ temp\\" + "\\" + month + "\\" + year +
Text1.Value))
>
These are the 2 lines I have to get the selected month and year but
var month=month_dro pdrown.selected index;
var year=year_dropd rown.selectedin dex;
but I get a compiler error, month_dropdown not defined. I am using
javascript.
I also tried printing out the variables using alert() but got a compiler
error, (not defined).
thanks
--
Paul G
Software engineer.
Oct 3 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
2678
by: edykstra | last post by:
Hello, If you point your browser to this page, http://prdownloads.sourceforge.net/vnc-tight/tightvnc-1.2.9_x86_viewer.zip?use_mirror=umn the server sends you the HTML page, and very soon afterwards, you are prompted to do a 'Save-As' for a file to download. How do they do that without the classic "Headers already sent" error?
2
13006
by: Kumar | last post by:
Hi, I am trying to develop FTP client application using c#. Our application functinality should be like this: 1.our client uploads files,folders to our ftp server for every 20 minutes. 2.At the end of operation they will put one confirmation file (say Done.txt) to conirm their upload operation is completed in that cycle.
2
1797
by: Mehr H | last post by:
I have been working on this for several days and am still have had no success in achieving this. Pleae help. It seems that documentation for this is very limited. I have looked in several books and they all seem to say either nothing about this or that this is "out of the scope of this book", even "Professional ASP.NET". I have a ActiveX component that I'd like to expose through a .NET wrapper so in the case that a client browses to my...
15
4774
by: Nathan | last post by:
I have an aspx page with a data grid, some textboxes, and an update button. This page also has one html input element with type=file (not inside the data grid and runat=server). The update button will verify the information that has been entered and updates the data base if the data is correct. Update will throw an exception if the data is not validate based on some given rules. I also have a custom error handling page to show the...
0
10710
by: mahesh anasuri | last post by:
Hi all, I am new to this mailing list. Thankful if any one is using curl/linux version to and worked on Https. I have created certificates (PEM format) for client and server using openSSL. I am using Apache server/Linux platform and started server with "server certificate". I configured server to listen HTTPS service at port 443. I downloaded download.txt correctly from server using command as $curl --cacert cacert.pem ...
53
4745
by: Hexman | last post by:
Hello All, I'd like your comments on the code below. The sub does exactly what I want it to do but I don't feel that it is solid as all. It seems like I'm using some VB6 code, .Net2003 code, and .Net2005 code. I'm developing in vb.net 2005. This test sub just reads an input text file, writing out records to another text file, eliminating records that have a '99' in them (it is similar to a CSV file). Some of my concerns are:
35
9360
by: keerthyragavendran | last post by:
hi i'm downloading a single file using multiple threads... how can i specify a particular range of bytes alone from a single large file... for example say if i need only bytes ranging from 500000 to 3200000 of a file whose size is say 20MB... how do i request a download which starts directly at 500000th byte... thank u cheers
10
2011
by: Garry | last post by:
I need to build a web site that can automatically download a file from the server to the users local C: drive and then open the file in Word on the local PC) How can I do this ? If i write a vb program to do the download, howto I link this to the web site / web page? any ideas PLEASE .
221
367587
Atli
by: Atli | last post by:
You may be wondering why you would want to put your files “into” the database, rather than just onto the file-system. Well, most of the time, you wouldn’t. In situations where your PHP application needs to store entire files, the preferred method is to save the file onto the server’s file-system, and store the physical location of the file in your database. This is generally considered to be the easiest and fastest way to store files. ...
0
9310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9236
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8186
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6735
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6031
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3261
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2724
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2180
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.