473,804 Members | 2,028 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Display User Selection From Combo Box

Hi

I'm sure this is a very trivial problem!
I have a combo bound to a recordset. I was wondering how I can show the
value on the page, what the user has selected?
The code that I'm using is below.
Any help, would be much apprceciated.

Kind regards

--
Kind Regards

Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)

<%

Dim objConnection 'The connection object
Dim objRecordset 'The recordset object

' create the Connection object
Set objConnection = Server.CreateOb ject("ADODB.Con nection")
' open the DSN
objConnection.O pen "Provider=sqlol edb;" & _
"Data Source=DEVSVR;" & _
"Initial Catalog=pubs;" & _
"User Id=sa;" & _
"Password=admin "

' creates the recordset object
Set objRecordset = Server.CreateOb ject("ADODB.Rec ordset")

' SQL String for query
Dim strSQL
strSQL = "SELECT au_id, au_lname FROM Authors"

' execute the SQL statement that you want
' The query should return all the data you'll
' need in your combo box
objRecordset.Op en strSQL, objConnection

Request.Form("a u_lname")
Response.Write (Request.Form(" au_lname"))

%>
<HTML>
<BODY>
<FORM ACTION="DBCombo .asp" METHOD=POST>
<select name=cboPrimary size=1 >
<!--onChange="frmTe st.submit();"> -->
Choose from the combo:
select name="lstTopic" size="1">
<%
' while we don't get the end of DataBase
Do While Not objRecordset.EO F
'we put the ID at Value
'this value is important to linked tables
%>
<option VALUE="<%=objRe cordset("au_ID" )%>">
<!-- This is what will appear in the combo box -->
<%=objRecordset ("au_lname") %>
</option>
<%
' Move to the next record...
objRecordset.Mo veNext
Loop ' keep the loop
%>
</SELECT>
</FORM>
</BODY>
</HTML>
<%
' close the recordset object
objRecordset.Cl ose

' clean the Recordset object
Set objRecordset = Nothing
%>

Jul 19 '05 #1
8 1975
Do you want to the selection to be displayed on the same page as the form?
or after the fgorm has been submitted?

if it's the first then it is a client side issue and you will have a better
response from a client side or javascript newsgroup
"rikesh" <ri**********@w ebsite.com> wrote in message
news:u8******** ******@TK2MSFTN GP09.phx.gbl...
Hi

I'm sure this is a very trivial problem!
I have a combo bound to a recordset. I was wondering how I can show the
value on the page, what the user has selected?
The code that I'm using is below.
Any help, would be much apprceciated.

Kind regards

--
Kind Regards

Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)

<%

Dim objConnection 'The connection object
Dim objRecordset 'The recordset object

' create the Connection object
Set objConnection = Server.CreateOb ject("ADODB.Con nection")
' open the DSN
objConnection.O pen "Provider=sqlol edb;" & _
"Data Source=DEVSVR;" & _
"Initial Catalog=pubs;" & _
"User Id=sa;" & _
"Password=admin "

' creates the recordset object
Set objRecordset = Server.CreateOb ject("ADODB.Rec ordset")

' SQL String for query
Dim strSQL
strSQL = "SELECT au_id, au_lname FROM Authors"

' execute the SQL statement that you want
' The query should return all the data you'll
' need in your combo box
objRecordset.Op en strSQL, objConnection

Request.Form("a u_lname")
Response.Write (Request.Form(" au_lname"))

%>
<HTML>
<BODY>
<FORM ACTION="DBCombo .asp" METHOD=POST>
<select name=cboPrimary size=1 >
<!--onChange="frmTe st.submit();"> -->
Choose from the combo:
select name="lstTopic" size="1">
<%
' while we don't get the end of DataBase
Do While Not objRecordset.EO F
'we put the ID at Value
'this value is important to linked tables
%>
<option VALUE="<%=objRe cordset("au_ID" )%>">
<!-- This is what will appear in the combo box -->
<%=objRecordset ("au_lname") %>
</option>
<%
' Move to the next record...
objRecordset.Mo veNext
Loop ' keep the loop
%>
</SELECT>
</FORM>
</BODY>
</HTML>
<%
' close the recordset object
objRecordset.Cl ose

' clean the Recordset object
Set objRecordset = Nothing
%>

Jul 19 '05 #2
Yeah, I would prefer on the same page!
So does that it's a client issue?

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bv******** *****@ID-221525.news.uni-berlin.de...
Do you want to the selection to be displayed on the same page as the form?
or after the fgorm has been submitted?

if it's the first then it is a client side issue and you will have a better response from a client side or javascript newsgroup
"rikesh" <ri**********@w ebsite.com> wrote in message
news:u8******** ******@TK2MSFTN GP09.phx.gbl...
Hi

I'm sure this is a very trivial problem!
I have a combo bound to a recordset. I was wondering how I can show the
value on the page, what the user has selected?
The code that I'm using is below.
Any help, would be much apprceciated.

Kind regards

--
Kind Regards

Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)

<%

Dim objConnection 'The connection object
Dim objRecordset 'The recordset object

' create the Connection object
Set objConnection = Server.CreateOb ject("ADODB.Con nection")
' open the DSN
objConnection.O pen "Provider=sqlol edb;" & _
"Data Source=DEVSVR;" & _
"Initial Catalog=pubs;" & _
"User Id=sa;" & _
"Password=admin "

' creates the recordset object
Set objRecordset = Server.CreateOb ject("ADODB.Rec ordset")

' SQL String for query
Dim strSQL
strSQL = "SELECT au_id, au_lname FROM Authors"

' execute the SQL statement that you want
' The query should return all the data you'll
' need in your combo box
objRecordset.Op en strSQL, objConnection

Request.Form("a u_lname")
Response.Write (Request.Form(" au_lname"))

%>
<HTML>
<BODY>
<FORM ACTION="DBCombo .asp" METHOD=POST>
<select name=cboPrimary size=1 >
<!--onChange="frmTe st.submit();"> -->
Choose from the combo:
select name="lstTopic" size="1">
<%
' while we don't get the end of DataBase
Do While Not objRecordset.EO F
'we put the ID at Value
'this value is important to linked tables
%>
<option VALUE="<%=objRe cordset("au_ID" )%>">
<!-- This is what will appear in the combo box -->
<%=objRecordset ("au_lname") %>
</option>
<%
' Move to the next record...
objRecordset.Mo veNext
Loop ' keep the loop
%>
</SELECT>
</FORM>
</BODY>
</HTML>
<%
' close the recordset object
objRecordset.Cl ose

' clean the Recordset object
Set objRecordset = Nothing
%>


Jul 19 '05 #3
yep, do a search on google and you will probably find what you are looking
for.

it will be something to do with the onChange event of the drop down, or
something like that

"rikesh" <ri**********@w ebsite.com> wrote in message
news:u$******** ******@TK2MSFTN GP11.phx.gbl...
Yeah, I would prefer on the same page!
So does that it's a client issue?

"Alex Goodey" <ag*****@hsfina ncial.co.uk> wrote in message
news:bv******** *****@ID-221525.news.uni-berlin.de...
Do you want to the selection to be displayed on the same page as the form? or after the fgorm has been submitted?

if it's the first then it is a client side issue and you will have a

better
response from a client side or javascript newsgroup
"rikesh" <ri**********@w ebsite.com> wrote in message
news:u8******** ******@TK2MSFTN GP09.phx.gbl...
Hi

I'm sure this is a very trivial problem!
I have a combo bound to a recordset. I was wondering how I can show the value on the page, what the user has selected?
The code that I'm using is below.
Any help, would be much apprceciated.

Kind regards

--
Kind Regards

Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)

<%

Dim objConnection 'The connection object
Dim objRecordset 'The recordset object

' create the Connection object
Set objConnection = Server.CreateOb ject("ADODB.Con nection")
' open the DSN
objConnection.O pen "Provider=sqlol edb;" & _
"Data Source=DEVSVR;" & _
"Initial Catalog=pubs;" & _
"User Id=sa;" & _
"Password=admin "

' creates the recordset object
Set objRecordset = Server.CreateOb ject("ADODB.Rec ordset")

' SQL String for query
Dim strSQL
strSQL = "SELECT au_id, au_lname FROM Authors"

' execute the SQL statement that you want
' The query should return all the data you'll
' need in your combo box
objRecordset.Op en strSQL, objConnection

Request.Form("a u_lname")
Response.Write (Request.Form(" au_lname"))

%>
<HTML>
<BODY>
<FORM ACTION="DBCombo .asp" METHOD=POST>
<select name=cboPrimary size=1 >
<!--onChange="frmTe st.submit();"> -->
Choose from the combo:
select name="lstTopic" size="1">
<%
' while we don't get the end of DataBase
Do While Not objRecordset.EO F
'we put the ID at Value
'this value is important to linked tables
%>
<option VALUE="<%=objRe cordset("au_ID" )%>">
<!-- This is what will appear in the combo box -->
<%=objRecordset ("au_lname") %>
</option>
<%
' Move to the next record...
objRecordset.Mo veNext
Loop ' keep the loop
%>
</SELECT>
</FORM>
</BODY>
</HTML>
<%
' close the recordset object
objRecordset.Cl ose

' clean the Recordset object
Set objRecordset = Nothing
%>



Jul 19 '05 #4

"rikesh" <ri**********@w ebsite.com> wrote in message
news:u8******** ******@TK2MSFTN GP09.phx.gbl...
Hi

I'm sure this is a very trivial problem!
I have a combo bound to a recordset. I was wondering how I can show the
value on the page, what the user has selected?
The code that I'm using is below.
Any help, would be much apprceciated.

Kind regards

--
Kind Regards

Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)

<%

Dim objConnection 'The connection object
Dim objRecordset 'The recordset object

' create the Connection object
Set objConnection = Server.CreateOb ject("ADODB.Con nection")
' open the DSN
objConnection.O pen "Provider=sqlol edb;" & _
"Data Source=DEVSVR;" & _
"Initial Catalog=pubs;" & _
"User Id=sa;" & _
"Password=admin "

' creates the recordset object
Set objRecordset = Server.CreateOb ject("ADODB.Rec ordset")

' SQL String for query
Dim strSQL
strSQL = "SELECT au_id, au_lname FROM Authors"

' execute the SQL statement that you want
' The query should return all the data you'll
' need in your combo box
objRecordset.Op en strSQL, objConnection

Request.Form("a u_lname")
Response.Write (Request.Form(" au_lname"))

%>
<HTML>
<BODY>
<FORM ACTION="DBCombo .asp" METHOD=POST>
<select name=cboPrimary size=1 >
<!--onChange="frmTe st.submit();"> -->
Choose from the combo:
select name="lstTopic" size="1">
<%
' while we don't get the end of DataBase
Do While Not objRecordset.EO F
'we put the ID at Value
'this value is important to linked tables
%>
<option VALUE="<%=objRe cordset("au_ID" )%>">
<!-- This is what will appear in the combo box -->
<%=objRecordset ("au_lname") %>
</option>
<%
' Move to the next record...
objRecordset.Mo veNext
Loop ' keep the loop
%>
</SELECT>
</FORM>
</BODY>
</HTML>
<%
' close the recordset object
objRecordset.Cl ose

' clean the Recordset object
Set objRecordset = Nothing
%>

<script language="javas cript">
<!--
function ChangeSelect(wh ich)
{
var wOne = which

document.sel.ch gsel.value = wOne;
}
//-->
</script>
</HEAD>

<form name="sel">
<select name="lect" OnChange="Chang eSelect(this.va lue);">
<option value="111">111 </option>
<option value="222">222 </option>
<option value="333">333 </option>
<option value="444">444 </option>
<option value="555">555 </option>
</select>
<br><br>
<input type="text" name="chgsel" size="20">
</form>
MSN : vb******@hotmai l.com
email : so****@ubizcom. co.kr
http://www.ubizcom.co.kr
---------------------------------------------- From DevSonner

Jul 19 '05 #5
Cheers that works really well, by the way, a quick question, can one use
javascript and VBScript on the same page???
"±Ç¹Î¼ö" <so****@ubizcom .co.kr> wrote in message
news:c0******** **@news1.kornet .net...

"rikesh" <ri**********@w ebsite.com> wrote in message
news:u8******** ******@TK2MSFTN GP09.phx.gbl...
Hi

I'm sure this is a very trivial problem!
I have a combo bound to a recordset. I was wondering how I can show the
value on the page, what the user has selected?
The code that I'm using is below.
Any help, would be much apprceciated.

Kind regards

--
Kind Regards

Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)

<%

Dim objConnection 'The connection object
Dim objRecordset 'The recordset object

' create the Connection object
Set objConnection = Server.CreateOb ject("ADODB.Con nection")
' open the DSN
objConnection.O pen "Provider=sqlol edb;" & _
"Data Source=DEVSVR;" & _
"Initial Catalog=pubs;" & _
"User Id=sa;" & _
"Password=admin "

' creates the recordset object
Set objRecordset = Server.CreateOb ject("ADODB.Rec ordset")

' SQL String for query
Dim strSQL
strSQL = "SELECT au_id, au_lname FROM Authors"

' execute the SQL statement that you want
' The query should return all the data you'll
' need in your combo box
objRecordset.Op en strSQL, objConnection

Request.Form("a u_lname")
Response.Write (Request.Form(" au_lname"))

%>
<HTML>
<BODY>
<FORM ACTION="DBCombo .asp" METHOD=POST>
<select name=cboPrimary size=1 >
<!--onChange="frmTe st.submit();"> -->
Choose from the combo:
select name="lstTopic" size="1">
<%
' while we don't get the end of DataBase
Do While Not objRecordset.EO F
'we put the ID at Value
'this value is important to linked tables
%>
<option VALUE="<%=objRe cordset("au_ID" )%>">
<!-- This is what will appear in the combo box -->
<%=objRecordset ("au_lname") %>
</option>
<%
' Move to the next record...
objRecordset.Mo veNext
Loop ' keep the loop
%>
</SELECT>
</FORM>
</BODY>
</HTML>
<%
' close the recordset object
objRecordset.Cl ose

' clean the Recordset object
Set objRecordset = Nothing
%>

<script language="javas cript">
<!--
function ChangeSelect(wh ich)
{
var wOne = which

document.sel.ch gsel.value = wOne;
}
//-->
</script>
</HEAD>

<form name="sel">
<select name="lect" OnChange="Chang eSelect(this.va lue);">
<option value="111">111 </option>
<option value="222">222 </option>
<option value="333">333 </option>
<option value="444">444 </option>
<option value="555">555 </option>
</select>
<br><br>
<input type="text" name="chgsel" size="20">
</form>
MSN : vb******@hotmai l.com
email : so****@ubizcom. co.kr
http://www.ubizcom.co.kr
---------------------------------------------- From DevSonner

Jul 19 '05 #6
<script language="javas cript">

<script language="vbscr ipt">
??
"rikesh" <ri**********@w ebsite.com> wrote in message
news:e1******** ******@TK2MSFTN GP09.phx.gbl...
Cheers that works really well, by the way, a quick question, can one use
javascript and VBScript on the same page???
"±Ç¹Î¼ö" <so****@ubizcom .co.kr> wrote in message
news:c0******** **@news1.kornet .net...

"rikesh" <ri**********@w ebsite.com> wrote in message
news:u8******** ******@TK2MSFTN GP09.phx.gbl...
Hi

I'm sure this is a very trivial problem!
I have a combo bound to a recordset. I was wondering how I can show the value on the page, what the user has selected?
The code that I'm using is below.
Any help, would be much apprceciated.

Kind regards

--
Kind Regards

Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)

<%

Dim objConnection 'The connection object
Dim objRecordset 'The recordset object

' create the Connection object
Set objConnection = Server.CreateOb ject("ADODB.Con nection")
' open the DSN
objConnection.O pen "Provider=sqlol edb;" & _
"Data Source=DEVSVR;" & _
"Initial Catalog=pubs;" & _
"User Id=sa;" & _
"Password=admin "

' creates the recordset object
Set objRecordset = Server.CreateOb ject("ADODB.Rec ordset")

' SQL String for query
Dim strSQL
strSQL = "SELECT au_id, au_lname FROM Authors"

' execute the SQL statement that you want
' The query should return all the data you'll
' need in your combo box
objRecordset.Op en strSQL, objConnection

Request.Form("a u_lname")
Response.Write (Request.Form(" au_lname"))

%>
<HTML>
<BODY>
<FORM ACTION="DBCombo .asp" METHOD=POST>
<select name=cboPrimary size=1 >
<!--onChange="frmTe st.submit();"> -->
Choose from the combo:
select name="lstTopic" size="1">
<%
' while we don't get the end of DataBase
Do While Not objRecordset.EO F
'we put the ID at Value
'this value is important to linked tables
%>
<option VALUE="<%=objRe cordset("au_ID" )%>">
<!-- This is what will appear in the combo box -->
<%=objRecordset ("au_lname") %>
</option>
<%
' Move to the next record...
objRecordset.Mo veNext
Loop ' keep the loop
%>
</SELECT>
</FORM>
</BODY>
</HTML>
<%
' close the recordset object
objRecordset.Cl ose

' clean the Recordset object
Set objRecordset = Nothing
%>

<script language="javas cript">
<!--
function ChangeSelect(wh ich)
{
var wOne = which

document.sel.ch gsel.value = wOne;
}
//-->
</script>
</HEAD>

<form name="sel">
<select name="lect" OnChange="Chang eSelect(this.va lue);">
<option value="111">111 </option>
<option value="222">222 </option>
<option value="333">333 </option>
<option value="444">444 </option>
<option value="555">555 </option>
</select>
<br><br>
<input type="text" name="chgsel" size="20">
</form>
MSN : vb******@hotmai l.com
email : so****@ubizcom. co.kr
http://www.ubizcom.co.kr
---------------------------------------------- From DevSonner



Jul 19 '05 #7
hate to soudn like one of those people who always corrects others, but it's
not a combo. Call it a select, or a dropdown, or whatever you want. But
there is no such thing as a combo on web products.
Jul 19 '05 #8
I'll bear that in mind in the future!!! Cheers! ;-)

"middletree " <mi********@hto mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
hate to soudn like one of those people who always corrects others, but it's not a combo. Call it a select, or a dropdown, or whatever you want. But
there is no such thing as a combo on web products.

Jul 19 '05 #9

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

Similar topics

3
12096
by: B Love | last post by:
I would like to display a drop-down list on a form conditional on the value of another field on the same form. I am not sure if this is good form or not. I am using Access97, but have access to 2000 also. The specific scenario is this: I have 2 fields on a form. One is called "Manufacturer." The other is called "ProductLine." I would like to display specific product lines of the selected Manufacturer. Now, here's the bad news: my SQL and VB...
2
3017
by: Dave N | last post by:
I have a combo box that displays the names of all the users in my "Users" table. I set the RowSource to a Query from the "User" and "Project" tables. I can select any name from the list and that name comes up in the combo box on the form. Everything works fine this way I just want to automatically put the user name in the combo box display. Is there a way to automate displaying a name in the combo box without having to use the drop...
3
2005
by: Paul | last post by:
I have some option boxes and combo boxes that looks up values on a separate table (i.e. campus table with campusID & campus name fields) When I choose a selection from the combo box, it puts the information in a main table when I do ADD RECORD. Only the campusID (a number) gets added in the main table. How can I get the corresponding value displayed on the table (i.e. campus name) instead of the equivalent campusID (which is unique).
2
1453
by: Shannan Casteel via AccessMonster.com | last post by:
I have a table with information about different people...(i.e. Name, Address, Phone, Fax, etc.). The table has been linked to Access. I have created a combo box that uses this information. There are eight columns in the combo box, seven of which are hidden. Therefore upon a selection the information that was hidden is now displayed on some labels at the bottom of the page. I used code similar to the following to make this work: ...
3
4049
by: google | last post by:
This is something I've done plenty of times in '97, but I can't seem to get it to work correctly in Access 2003. Say, for example, I have a form with an unbound combobox, the data source is a table of customers, first column is the key field, which is hidden with a 0" width, and the second column is the customer name. The SQL is a union query that also inserts Null in the first column, and "All" in the second column. That combobox gets...
1
2206
by: jerry.ranch | last post by:
So I've been playing with combo boxes and subforms. Finally, I can make a selection in a combo box, and have that drive an after update event to open a query or a form. Works famously. Now the next step is to bury the form in the same form where the cmb is located (as a subform) I use two linked cmb. And I have linked the second cmb with the subform. A selection in the first cmb limits the selection in the second cmb. A selection...
2
1737
by: josecruz | last post by:
I have created a combo box for my form. This box displays the individual items properly and runs the report on that particular selection. My question is. How do I code so that a selection of display All items on the combo box? Thank you Jose
2
2402
by: ApexData | last post by:
I am working on a lookup form, where the user will enter LastName FirstName and check for duplicates. I have a list box that is bound to a table of 200 members. After the user enters the name, I would like the Listbox to automatically display the user found at the top row and of course have the remaining members displayed alphabeticallly below it. Actually, regardless of duplicates, I would like the ListBox to display the closest name...
40
2249
by: HSXWillH | last post by:
I have a large query with 6 selection fields that I allow the user to choose any and all from 1 single input form. The 6 option fields on Form SearchForm are: Track, Distance, Surface, Track_Condition, Final_Pos and Race_Type. The 6 particular combo boxes are cboTrack, cboDistance, cboSurface, cboTrkCond, cboFinalPos and cboRaceType. I've set up a query/filter that works using the selection criteria !!etc... in alternating manners so...
0
9711
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10595
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10343
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
10335
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
9169
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...
0
5529
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...
0
5668
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4306
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
3
3001
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.