472,331 Members | 1,773 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,331 software developers and data experts.

automatic ASP page submission?

I'm trying to automatically submit a form to another ASP page after
some <input> fields values are filled by ASP.

I know I can do it using javascript, but is there a way to
automatically submit the form using VBscript?

Terry

<%
' ... some asp processing
value1 = "something"
value2 = "somethingelse"
%>

<form method="post" action="mynextpage.asp" id="form1" name="form1">
<input TYPE="hidden" name="var1" VALUE=" & <%=value1%> & ">"
<input TYPE="hidden" name="var2" VALUE=" & <%=value2%> & ">"
</form>

<%
' form1.submit() ' this obviously wouldn't do anything
%>
<script language="JavaScript" type="text/javascript">
// this works but is there a way to do it in vbscript.
form1.submit();
</script>

Jul 19 '05 #1
12 15300
Why do you need to if you're posting to your own page? Can't you just
execute the code on the serveR? Why create a form that has values
determined by ASP code and then submit it back to the same server?

Ray at work

"Terry" <sa********@shaw.ca> wrote in message
news:9a********************************@4ax.com...
I'm trying to automatically submit a form to another ASP page after
some <input> fields values are filled by ASP.

I know I can do it using javascript, but is there a way to
automatically submit the form using VBscript?

Terry

<%
' ... some asp processing
value1 = "something"
value2 = "somethingelse"
%>

<form method="post" action="mynextpage.asp" id="form1" name="form1">
<input TYPE="hidden" name="var1" VALUE=" & <%=value1%> & ">"
<input TYPE="hidden" name="var2" VALUE=" & <%=value2%> & ">"
</form>

<%
' form1.submit() ' this obviously wouldn't do anything
%>
<script language="JavaScript" type="text/javascript">
// this works but is there a way to do it in vbscript.
form1.submit();
</script>

Jul 19 '05 #2
Terry wrote on 16 dec 2003 in microsoft.public.inetserver.asp.general:
I'm trying to automatically submit a form to another ASP page after
some <input> fields values are filled by ASP.

I know I can do it using javascript, but is there a way to
automatically submit the form using VBscript?

Terry

<%
' ... some asp processing
value1 = "something"
value2 = "somethingelse"
%>

<form method="post" action="mynextpage.asp" id="form1" name="form1">
<input TYPE="hidden" name="var1" VALUE=" & <%=value1%> & ">"
<input TYPE="hidden" name="var2" VALUE=" & <%=value2%> & ">"
</form>

<%
' form1.submit() ' this obviously wouldn't do anything
%>
<script language="JavaScript" type="text/javascript">
// this works but is there a way to do it in vbscript.
form1.submit();
</script>


<script type="text/vbscript">
form1.submit()
</script>

Only for IE !!!

Why would you want to do that ?

Are you confusing vbs with (asp)serverside and js with clientside ?

===================

Would you want to do this:

<%
session("value1")=value1
session("value2")=value2
response redirect "myNextpage.asp"
%>

and on "myNextpage.asp"

<%
value1=session("value1")
value2=session("value2")
%>

===============

or

<%
response redirect "myNextpage.asp?"&"value1"&"&"&"value2"
%>

and on "myNextpage.asp"

<%
value1=request.querystring("value1")
value2=request.querystring("value2")
%>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #3
On Mon, 15 Dec 2003 18:50:51 -0500, "Ray at <%=sLocation%>"
<myfirstname at lane34 dot com> wrote:
Why do you need to if you're posting to your own page? Can't you just
execute the code on the serveR? Why create a form that has values
determined by ASP code and then submit it back to the same server?

Ray at work


Ray, Evertjan,

Thank you for the responses.

I will give a little more info. I was trying to keep it short and
probably confused things a bit by saying 'myNextPage.asp' ... that
page is actually on a 3rd party server.

I am trying to create a standardized ASP page I can call that will
handle 2 (or more) different processing methods for credit cards. One
of our 3rd party vendors accepts a post using a querystring. The
other vendor accepts a form post. So the modified code might look
something like this:

Is there a better to handle this?

Terry

<%
' this ASP page is called by our user's payment form
' .. the page specifies which bankVendor to use.
' ... some initial processing to populate our database
value1 = "something"
value2 = "somethingelse"
' etc.

if BankVendor="A" then
Response.redirect "https://www.bankA.com/payment.asp?" & _
"merchant_id=" & value1 & "&" & "OrdNum=" & value2
elseif BankVendor="B" then
%>
<form method="post" action="https://www.bankB.com/payment.asp"
id="form1" name="form1">
<input TYPE="hidden" name="merchant_id" VALUE=" & <%=value1%> & ">"
<input TYPE="hidden" name="OrdNum" VALUE=" & <%=value2%> & ">"
</form>

<%
' if BankVendor = "B", then I want to submit the form

<script language="JavaScript" type="text/javascript">
// this works but is there a way to do it in vbscript.
form1.submit();
</script>
end if

%>

Jul 19 '05 #4
"Terry" <sa********@shaw.ca> wrote in message
news:p4********************************@4ax.com...
On Mon, 15 Dec 2003 18:50:51 -0500, "Ray at <%=sLocation%>"
<myfirstname at lane34 dot com> wrote:
Why do you need to if you're posting to your own page? Can't you justexecute the code on the serveR? Why create a form that has values
determined by ASP code and then submit it back to the same server?

Ray at work


Ray, Evertjan,

Thank you for the responses.

I will give a little more info. I was trying to keep it short and
probably confused things a bit by saying 'myNextPage.asp' ... that
page is actually on a 3rd party server.

I am trying to create a standardized ASP page I can call that will
handle 2 (or more) different processing methods for credit cards. One
of our 3rd party vendors accepts a post using a querystring. The
other vendor accepts a form post. So the modified code might look
something like this:

Is there a better to handle this?

Terry

<%
' this ASP page is called by our user's payment form
' .. the page specifies which bankVendor to use.
' ... some initial processing to populate our database
value1 = "something"
value2 = "somethingelse"
' etc.

if BankVendor="A" then
Response.redirect "https://www.bankA.com/payment.asp?" & _
"merchant_id=" & value1 & "&" & "OrdNum=" & value2
elseif BankVendor="B" then
%>
<form method="post" action="https://www.bankB.com/payment.asp"
id="form1" name="form1">
<input TYPE="hidden" name="merchant_id" VALUE=" & <%=value1%> & ">"
<input TYPE="hidden" name="OrdNum" VALUE=" & <%=value2%> & ">"
</form>

<%
' if BankVendor = "B", then I want to submit the form

<script language="JavaScript" type="text/javascript">
// this works but is there a way to do it in vbscript.
form1.submit();
</script>
end if

%>


The following article has a section devoted to posting to an external
resource using MSXML.
http://aspfaq.com/2173

HTH
-Chris Hohmann
Jul 19 '05 #5
Use the link that Chris posted. Are you trying to jerry-rig thins though?
One of your vendors instructs you to grab data from their website and put it
in your own? You'd think they'd offer something to do this for you.

Ray at work

"Terry" <sa********@shaw.ca> wrote in message
news:p4********************************@4ax.com...
I will give a little more info. I was trying to keep it short and
probably confused things a bit by saying 'myNextPage.asp' ... that
page is actually on a 3rd party server.

I am trying to create a standardized ASP page I can call that will
handle 2 (or more) different processing methods for credit cards. One
of our 3rd party vendors accepts a post using a querystring. The
other vendor accepts a form post. So the modified code might look
something like this:

Is there a better to handle this?

Jul 19 '05 #6
Thanks for the great link. That does it.

But just to clarify... I think you might still be confused on my
setup. The initial user form is on our site, which then calls the ASP
page I am referring to (again on our site), and that decides to which
of the other two external sites it is posted to, depending on the bank
type.

thanks again ... Terry
On Mon, 15 Dec 2003 20:06:28 -0500, "Ray at <%=sLocation%>"
<myfirstname at lane34 dot com> wrote:
Use the link that Chris posted. Are you trying to jerry-rig thins though?
One of your vendors instructs you to grab data from their website and put it
in your own? You'd think they'd offer something to do this for you.

Ray at work

"Terry" <sa********@shaw.ca> wrote in message
news:p4********************************@4ax.com.. .
I will give a little more info. I was trying to keep it short and
probably confused things a bit by saying 'myNextPage.asp' ... that
page is actually on a 3rd party server.

I am trying to create a standardized ASP page I can call that will
handle 2 (or more) different processing methods for credit cards. One
of our 3rd party vendors accepts a post using a querystring. The
other vendor accepts a form post. So the modified code might look
something like this:

Is there a better to handle this?


Jul 19 '05 #7
Thought I had it, but on further review, it is still not working
right.

When I use 'MSXML2.ServerXMLHTTP' to post the page, the resulting URL
that appears ends up being on my computer, rather than the remote
server. So then the resulting buttons on THAT page fail, since they
are referencing relatively ( I suppose).

Am I missing something? Or could it mean there is an installation
problem of MSXML2 on my ISP's server. Any other suggestions?

Terry
Here are the two sample pages:

The html form I would like to simulate (this page will work if you
paste it)
test.html:

<HTML>
<HEAD>
<FORM METHOD="POST"
ACTION="https://esqa.moneris.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="return_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="receipt_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
<INPUT TYPE="SUBMIT" NAME="SUBMIT" VALUE="Click to proceed to
Secure Page">
</FORM>
</HEAD>
</HTML>

THE ASP page that should(?) submit the info automatically for me:
but, when I run this page, instead of
'https://esqa.moneris.com/hosted/index.php' appearing in my Browser
address bar, it shows: http://mycomputer/mypath/test2.asp
It might be useful if someone could run this on their server (with
good MSXML2 install) to let me know if they get the same as the HTML
form above, or the same as I do.
========================
test2.asp:

<%@ Language=VBScript %>
<HTML>
<HEAD>

<%
dim xmlhttp
url = "https://esqa.moneris.com/hosted/index.php"
set xmlhttp = server.CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "POST", url, false
xmlhttp.setRequestHeader "Content-Type",
"application/x-www-form-urlencoded"

formdata="store_id=store1&" & _
"charge_total=1.01&" & _
"return_URL= www.yahoo.com&" & _
"receipt_URL=www.yahoo.com&" & _
"hide_items=1&" & _
"hide_address=1"

xmlhttp.send formdata
Response.write xmlhttp.responseText
set xmlhttp = nothing
%>
</HEAD>
</HTML>



On Mon, 15 Dec 2003 20:06:28 -0500, "Ray at <%=sLocation%>"
<myfirstname at lane34 dot com> wrote:
Use the link that Chris posted. Are you trying to jerry-rig thins though?
One of your vendors instructs you to grab data from their website and put it
in your own? You'd think they'd offer something to do this for you.

Ray at work

"Terry" <sa********@shaw.ca> wrote in message
news:p4********************************@4ax.com.. .
I will give a little more info. I was trying to keep it short and
probably confused things a bit by saying 'myNextPage.asp' ... that
page is actually on a 3rd party server.

I am trying to create a standardized ASP page I can call that will
handle 2 (or more) different processing methods for credit cards. One
of our 3rd party vendors accepts a post using a querystring. The
other vendor accepts a form post. So the modified code might look
something like this:

Is there a better to handle this?


Jul 19 '05 #8
Terry wrote on 16 dec 2003 in microsoft.public.inetserver.asp.general:
Here are the two sample pages:

The html form I would like to simulate (this page will work if you
paste it)
test.html:

<HTML>
<HEAD>
<FORM METHOD="POST"
ACTION="https://esqa.moneris.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="return_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="receipt_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
<INPUT TYPE="SUBMIT" NAME="SUBMIT" VALUE="Click to proceed to
Secure Page">
</FORM>
</HEAD>
</HTML>


I think you are making to many problems for yourself.
why not simply startout with:

====================================

<HTML>

<% bank=session("bankname") %>

<body
onload="document.getElementById(""myform"").submit ()">

<% if bank = "bankA" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://esqa.moneris.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% elseif bank = "bankB" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://Bank.b.com/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% elseif bank = "bankC" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://bank.C.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% ' else - errorcode for other banks here later? %>

<% end if %>

</Body>
</HTML>

=================================

If this works then you can change the codes for the individual banks,
possibly also adding bankspecific serverside code.

You could write the above far mor efficiently,
but the layout of the code would be less clear.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #9
Evertjan. wrote on 16 dec 2003 in microsoft.public.inetserver.asp.general:
<FORM METHOD="POST" id="myform">
ACTION="https://bank.C.com/hosted/index.php">


<FORM METHOD="POST" id="myform"
ACTION="https://bank.C.com/hosted/index.php">
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #10
"Terry" <sa********@shaw.ca> wrote in message
news:9a********************************@4ax.com...
I'm trying to automatically submit a form to another ASP page after
some <input> fields values are filled by ASP.

I know I can do it using javascript, but is there a way to
automatically submit the form using VBscript?

Terry

<%
' ... some asp processing
value1 = "something"
value2 = "somethingelse"
%>

<form method="post" action="mynextpage.asp" id="form1" name="form1">
<input TYPE="hidden" name="var1" VALUE=" & <%=value1%> & ">"
<input TYPE="hidden" name="var2" VALUE=" & <%=value2%> & ">"
</form>

<%
' form1.submit() ' this obviously wouldn't do anything
%>
<script language="JavaScript" type="text/javascript">
// this works but is there a way to do it in vbscript.
form1.submit();
</script>


Yeah ...

<script language="vbcript">
form1.submit
</script>

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/


Jul 19 '05 #11
Hi Evertjan,

Thank you for your interest. I didn't get a chance to get back to
this today. I hope to tomorrow. I will look at your suggestion and
let you know how I make out.

Terry

On 16 Dec 2003 11:51:40 GMT, "Evertjan."
<ex**************@interxnl.net> wrote:
Terry wrote on 16 dec 2003 in microsoft.public.inetserver.asp.general:
Here are the two sample pages:

The html form I would like to simulate (this page will work if you
paste it)
test.html:

<HTML>
<HEAD>
<FORM METHOD="POST"
ACTION="https://esqa.moneris.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="return_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="receipt_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
<INPUT TYPE="SUBMIT" NAME="SUBMIT" VALUE="Click to proceed to
Secure Page">
</FORM>
</HEAD>
</HTML>


I think you are making to many problems for yourself.
why not simply startout with:

====================================

<HTML>

<% bank=session("bankname") %>

<body
onload="document.getElementById(""myform"").submi t()">

<% if bank = "bankA" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://esqa.moneris.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% elseif bank = "bankB" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://Bank.b.com/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% elseif bank = "bankC" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://bank.C.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% ' else - errorcode for other banks here later? %>

<% end if %>

</Body>
</HTML>

=================================

If this works then you can change the codes for the individual banks,
possibly also adding bankspecific serverside code.

You could write the above far mor efficiently,
but the layout of the code would be less clear.


Jul 19 '05 #12
Hi Evertjan,

Yes, that's what I need. Got it all working.

Thank you for your persistence.

Terry

On 16 Dec 2003 11:51:40 GMT, "Evertjan."
<ex**************@interxnl.net> wrote:
Terry wrote on 16 dec 2003 in microsoft.public.inetserver.asp.general:
Here are the two sample pages:

The html form I would like to simulate (this page will work if you
paste it)
test.html:

<HTML>
<HEAD>
<FORM METHOD="POST"
ACTION="https://esqa.moneris.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="return_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="receipt_URL"
VALUE="http://www.yahoo.com">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
<INPUT TYPE="SUBMIT" NAME="SUBMIT" VALUE="Click to proceed to
Secure Page">
</FORM>
</HEAD>
</HTML>


I think you are making to many problems for yourself.
why not simply startout with:

====================================

<HTML>

<% bank=session("bankname") %>

<body
onload="document.getElementById(""myform"").submi t()">

<% if bank = "bankA" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://esqa.moneris.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% elseif bank = "bankB" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://Bank.b.com/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% elseif bank = "bankC" then %>

<FORM METHOD="POST" id="myform">
ACTION="https://bank.C.com/hosted/index.php">
<INPUT TYPE="HIDDEN" NAME="store_id" VALUE="store1">
<INPUT TYPE="HIDDEN" NAME="charge_total" VALUE="1.01">
<INPUT TYPE="HIDDEN" NAME="hide_item" VALUE="1">
<INPUT TYPE="HIDDEN" NAME="hide_address" VALUE="1">
</FORM>

<% ' else - errorcode for other banks here later? %>

<% end if %>

</Body>
</HTML>

=================================

If this works then you can change the codes for the individual banks,
possibly also adding bankspecific serverside code.

You could write the above far mor efficiently,
but the layout of the code would be less clear.


Jul 19 '05 #13

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

Similar topics

0
by: Eric Linders | last post by:
Hello, Our company currently processes a few hundred form submissions through our site. Up till now, the contents of the form has been sent to...
5
by: Alex Hunsley | last post by:
I'm using urllib to post data to a web form by issuing a command similar to this: filename, headers =...
10
by: Manny | last post by:
I have a web form "Page1.asp" and it reads data from a database, does some calculations, and displays the records in pages. Works fine. I have a...
1
by: Piotr Kurpiel | last post by:
Hi, I am creating a site where I need to refer to another external file (aspx). I create the form and works fine. But as soon as I try to submit...
12
by: Stanley | last post by:
Hi, I'd like to write a HTML page which can help me directly log in my Yahoo!mail or Gmail account without typing user name and password....
6
by: scottyman | last post by:
I can't make this script work properly. I've gone as far as I can with it and the rest is out of my ability. I can do some html editing but I'm...
7
by: grpmangr | last post by:
hi Is ther anyway i can automatically fill out forms and submit them thru java? supposing i hav a normal txt file that contains all data that...
4
by: Scott Shuster | last post by:
Hi, I've been searching and testing and have not yet found the answer I'm looking for. I have an ASP.NET (vb) application with an ecommerce...
6
by: chazzy69 | last post by:
Ok two questions- First is it possible to replicate javascripts automatic submit with a php function, i want to do this due to the fact we i run a...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

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.