473,418 Members | 2,086 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Can't send activeX value to ASP using Javascript

I am attempting to send the variable "sComputerName" from my ActiveX script to "GetInfo.asp" using javascript. (Having been advised this is the way to get my ActiveX variable into my ASP script)

My code is below. I am getting the following error "MyForm.oNetwork.Value is Null or is not an object". I'm struggling to diagnose what to do next. I'd very much appreciate some help

Many thanks

<HTML><BODY><FORM NAME="MyForm" ACTION="GetInfo.asp
METHOD="post" onSubmit="MyFunc()"><!-- Start of ActiveX --><Script language="vbscript">
Set oNetwork = CreateObject("WScript.Network"
sComputerName = oNetwork.ComputerNam
</script><!-- End of ActiveX --><BR
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR><INPUT TYPE="hidden" NAME="sComputerName"><INPUT TYPE="submit" VALUE="Submit"><INPUT TYPE="reset"><p></FORM><SCRIPT LANGUAGE="JavaScript"><!-
function MyFunc(

MyForm.sComputerName.Value = MyForm.oNetwork.Valu

--></SCRIPT></BODY></HTML>
Jul 19 '05 #1
7 2805
"NewbieJon" <an*******@discussions.microsoft.com> wrote in message
news:14**********************************@microsof t.com...
I am attempting to send the variable "sComputerName" from my ActiveX script to "GetInfo.asp" using javascript. (Having been advised this is the
way to get my ActiveX variable into my ASP script).
My code is below. I am getting the following error "MyForm.oNetwork.Value is Null or is not an object". I'm struggling to diagnose what to do next.
I'd very much appreciate some help.
Many thanks.

<HTML><BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
METHOD="post" onSubmit="MyFunc()"><!-- Start of ActiveX --><Script language="vbscript"> Set oNetwork = CreateObject("WScript.Network")
sComputerName = oNetwork.ComputerName
</script><!-- End of ActiveX --><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR><INPUT TYPE="hidden" NAME="sComputerName"><INPUT TYPE="submit"
VALUE="Submit"><INPUT TYPE="reset"><p></FORM><SCRIPT
LANGUAGE="JavaScript"><!-- function MyFunc()
{
MyForm.sComputerName.Value = MyForm.oNetwork.Value
}
--></SCRIPT></BODY></HTML>


Firstly this is not going to work unless the particualr zone that this page
is in has very low security settings. That being said you do not need to
refer to the form and you can tidy it up a bit. And instead of mixing
VBSCript and JScript why not all in one language?

<HTML>
<HEAD>
<!-- Start of ActiveX -->
<Script language="jscript">
var oNetwork = new ActiveXObject("WScript.Network")
var sComputerName = oNetwork.ComputerName
</script>
<!-- End of ActiveX -->
</HEAD>
<BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
METHOD="post" onSubmit="return MyFunc();"><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
<INPUT TYPE="hidden" NAME="sComputerName">
<INPUT TYPE="submit" VALUE="Submit"><INPUT TYPE="reset"><p></FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
function MyFunc()
{
MyForm.sComputerName.Value = sComputerName;
return true;
}
-->
</SCRIPT>
</BODY>
</HTML>

--
Joe
Jul 19 '05 #2
Hi Joe,

Thanks for your reply.

The security issue with the activex code isn't a problem because this will
be live only within our intranet and not on machines that users will play
about with.

I'm far from an expert in this field. I've not done any ASP for a few
years, and I've never done any activeX before. I've pretty much thrown this
code together from samples...hence why theres javascript and vbscript mixed.

Anyway thanks for your code, but unfortunately it doesn't work. The
computer name is not passed through, its just an empty value. It definately
does grab it though because an output to the screen within the activex
component will show the computer name as I want.

Any suggestions?

Many thanks

Jon
"Joe Fawcett" <jo********@hotmail.com> wrote in message
news:OY*************@tk2msftngp13.phx.gbl...
"NewbieJon" <an*******@discussions.microsoft.com> wrote in message
news:14**********************************@microsof t.com...
I am attempting to send the variable "sComputerName" from my ActiveX script to "GetInfo.asp" using javascript. (Having been advised this is

the way to get my ActiveX variable into my ASP script).

My code is below. I am getting the following error
"MyForm.oNetwork.Value is Null or is not an object". I'm struggling to diagnose what to do next.
I'd very much appreciate some help.

Many thanks.

<HTML><BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
METHOD="post" onSubmit="MyFunc()"><!-- Start of
ActiveX --><Script language="vbscript">
Set oNetwork = CreateObject("WScript.Network")
sComputerName = oNetwork.ComputerName
</script><!-- End of ActiveX --><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR><INPUT TYPE="hidden" NAME="sComputerName"><INPUT TYPE="submit"
VALUE="Submit"><INPUT TYPE="reset"><p></FORM><SCRIPT
LANGUAGE="JavaScript"><!--
function MyFunc()
{
MyForm.sComputerName.Value = MyForm.oNetwork.Value
}
--></SCRIPT></BODY></HTML>


Firstly this is not going to work unless the particualr zone that this

page is in has very low security settings. That being said you do not need to
refer to the form and you can tidy it up a bit. And instead of mixing
VBSCript and JScript why not all in one language?

<HTML>
<HEAD>
<!-- Start of ActiveX -->
<Script language="jscript">
var oNetwork = new ActiveXObject("WScript.Network")
var sComputerName = oNetwork.ComputerName
</script>
<!-- End of ActiveX -->
</HEAD>
<BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
METHOD="post" onSubmit="return MyFunc();"><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
<INPUT TYPE="hidden" NAME="sComputerName">
<INPUT TYPE="submit" VALUE="Submit"><INPUT TYPE="reset"><p></FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
function MyFunc()
{
MyForm.sComputerName.Value = sComputerName;
return true;
}
-->
</SCRIPT>
</BODY>
</HTML>

--
Joe

Jul 19 '05 #3
Try:

<HTML>
<HEAD>
<!-- Start of ActiveX -->
<Script language="javascript">
var oNetwork = new ActiveXObject("WScript.Network")
var sComputerName = oNetwork.ComputerName
alert(sComputerName);
</script>
<!-- End of ActiveX -->
</HEAD>
<BODY>
<FORM NAME="MyForm" ACTION="GetInfo.asp" METHOD="post"><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
<INPUT TYPE="hidden" NAME="sComputerName">
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset"><p>
</FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
alert(sComputerName);
alert(MyForm.sComputerName.Value);
MyForm.sComputerName.Value = sComputerName;
alert(MyForm.sComputerName.Value);
-->
</SCRIPT>
</BODY>
</HTML>

What do the alert boxes tell you?

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"NewbieJon" <Ne*******@nospam.com> wrote in message
news:rN**************@newsfe3-win.server.ntli.net...
Hi Joe,

Thanks for your reply.

The security issue with the activex code isn't a problem because this will
be live only within our intranet and not on machines that users will play
about with.

I'm far from an expert in this field. I've not done any ASP for a few
years, and I've never done any activeX before. I've pretty much thrown this code together from samples...hence why theres javascript and vbscript mixed.
Anyway thanks for your code, but unfortunately it doesn't work. The
computer name is not passed through, its just an empty value. It definately does grab it though because an output to the screen within the activex
component will show the computer name as I want.

Any suggestions?

Many thanks

Jon
"Joe Fawcett" <jo********@hotmail.com> wrote in message
news:OY*************@tk2msftngp13.phx.gbl...
"NewbieJon" <an*******@discussions.microsoft.com> wrote in message
news:14**********************************@microsof t.com...
I am attempting to send the variable "sComputerName" from my ActiveX

script to "GetInfo.asp" using javascript. (Having been advised this is

the
way to get my ActiveX variable into my ASP script).

My code is below. I am getting the following error "MyForm.oNetwork.Value
is Null or is not an object". I'm struggling to diagnose what to do

next. I'd very much appreciate some help.

Many thanks.

<HTML><BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
METHOD="post" onSubmit="MyFunc()"><!-- Start of ActiveX --><Script
language="vbscript">
Set oNetwork = CreateObject("WScript.Network")
sComputerName = oNetwork.ComputerName
</script><!-- End of ActiveX --><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password"

SIZE="20"><BR><INPUT TYPE="hidden" NAME="sComputerName"><INPUT TYPE="submit"
VALUE="Submit"><INPUT TYPE="reset"><p></FORM><SCRIPT
LANGUAGE="JavaScript"><!--
function MyFunc()
{
MyForm.sComputerName.Value = MyForm.oNetwork.Value
}
--></SCRIPT></BODY></HTML>


Firstly this is not going to work unless the particualr zone that this

page
is in has very low security settings. That being said you do not need to
refer to the form and you can tidy it up a bit. And instead of mixing
VBSCript and JScript why not all in one language?

<HTML>
<HEAD>
<!-- Start of ActiveX -->
<Script language="jscript">
var oNetwork = new ActiveXObject("WScript.Network")
var sComputerName = oNetwork.ComputerName
</script>
<!-- End of ActiveX -->
</HEAD>
<BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
METHOD="post" onSubmit="return MyFunc();"><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
<INPUT TYPE="hidden" NAME="sComputerName">
<INPUT TYPE="submit" VALUE="Submit"><INPUT TYPE="reset"><p></FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
function MyFunc()
{
MyForm.sComputerName.Value = sComputerName;
return true;
}
-->
</SCRIPT>
</BODY>
</HTML>

--
Joe


Jul 19 '05 #4
Hi Mark,

Thanks for your help.

I get 4 alerts as follows in this order (My computer name is "Jon"):

1. Jon
2. Jon
3. Undefined
4. Jon

I'm getting a little lost now. Is this good, and how do I pass this to my
ASP?

Thank you.
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:OP**************@TK2MSFTNGP11.phx.gbl...
Try:

<HTML>
<HEAD>
<!-- Start of ActiveX -->
<Script language="javascript">
var oNetwork = new ActiveXObject("WScript.Network")
var sComputerName = oNetwork.ComputerName
alert(sComputerName);
</script>
<!-- End of ActiveX -->
</HEAD>
<BODY>
<FORM NAME="MyForm" ACTION="GetInfo.asp" METHOD="post"><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
<INPUT TYPE="hidden" NAME="sComputerName">
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset"><p>
</FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
alert(sComputerName);
alert(MyForm.sComputerName.Value);
MyForm.sComputerName.Value = sComputerName;
alert(MyForm.sComputerName.Value);
-->
</SCRIPT>
</BODY>
</HTML>

What do the alert boxes tell you?

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"NewbieJon" <Ne*******@nospam.com> wrote in message
news:rN**************@newsfe3-win.server.ntli.net...
Hi Joe,

Thanks for your reply.

The security issue with the activex code isn't a problem because this will
be live only within our intranet and not on machines that users will play about with.

I'm far from an expert in this field. I've not done any ASP for a few
years, and I've never done any activeX before. I've pretty much thrown

this
code together from samples...hence why theres javascript and vbscript

mixed.

Anyway thanks for your code, but unfortunately it doesn't work. The
computer name is not passed through, its just an empty value. It

definately
does grab it though because an output to the screen within the activex
component will show the computer name as I want.

Any suggestions?

Many thanks

Jon
"Joe Fawcett" <jo********@hotmail.com> wrote in message
news:OY*************@tk2msftngp13.phx.gbl...
"NewbieJon" <an*******@discussions.microsoft.com> wrote in message
news:14**********************************@microsof t.com...
> I am attempting to send the variable "sComputerName" from my ActiveX
script to "GetInfo.asp" using javascript. (Having been advised this is
the
way to get my ActiveX variable into my ASP script).
>
> My code is below. I am getting the following error

"MyForm.oNetwork.Value
is Null or is not an object". I'm struggling to diagnose what to do

next. I'd very much appreciate some help.
>
> Many thanks.
>
> <HTML><BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
> METHOD="post" onSubmit="MyFunc()"><!-- Start of

ActiveX --><Script
language="vbscript">
> Set oNetwork = CreateObject("WScript.Network")
> sComputerName = oNetwork.ComputerName
> </script><!-- End of ActiveX --><BR>
> USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
> PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR><INPUT TYPE="hidden" NAME="sComputerName"><INPUT TYPE="submit"
VALUE="Submit"><INPUT TYPE="reset"><p></FORM><SCRIPT
LANGUAGE="JavaScript"><!--
> function MyFunc()
> {
> MyForm.sComputerName.Value = MyForm.oNetwork.Value
> }
> --></SCRIPT></BODY></HTML>

Firstly this is not going to work unless the particualr zone that this

page
is in has very low security settings. That being said you do not need

to refer to the form and you can tidy it up a bit. And instead of mixing
VBSCript and JScript why not all in one language?

<HTML>
<HEAD>
<!-- Start of ActiveX -->
<Script language="jscript">
var oNetwork = new ActiveXObject("WScript.Network")
var sComputerName = oNetwork.ComputerName
</script>
<!-- End of ActiveX -->
</HEAD>
<BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
METHOD="post" onSubmit="return MyFunc();"><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
<INPUT TYPE="hidden" NAME="sComputerName">
<INPUT TYPE="submit" VALUE="Submit"><INPUT TYPE="reset"><p></FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
function MyFunc()
{
MyForm.sComputerName.Value = sComputerName;
return true;
}
-->
</SCRIPT>
</BODY>
</HTML>

--
Joe



Jul 19 '05 #5
"NewbieJon" <Ne*******@nospam.com> wrote in message
news:rN**************@newsfe3-win.server.ntli.net...
Hi Joe,

Thanks for your reply.

The security issue with the activex code isn't a problem because this will
be live only within our intranet and not on machines that users will play
about with.

I'm far from an expert in this field. I've not done any ASP for a few
years, and I've never done any activeX before. I've pretty much thrown this code together from samples...hence why theres javascript and vbscript mixed.
Anyway thanks for your code, but unfortunately it doesn't work. The
computer name is not passed through, its just an empty value. It definately does grab it though because an output to the screen within the activex
component will show the computer name as I want.

Any suggestions?

Many thanks

Jon

In this line make sure value has a small 'v':
MyForm.sComputerName.value = sComputerName;
return true;

It would also be better to have your hidden field named differently from
your variable holding the computer name.

--
Joe
Jul 19 '05 #6
It's probably the capital "V" as the other poster mentioned.

Change it to:

alert(sComputerName);
alert(MyForm.sComputerName.value);
MyForm.sComputerName.value = sComputerName;
alert(MyForm.sComputerName.value);

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"NewbieJon" <No@spam.com> wrote in message
news:6Q*************@newsfe1-gui.server.ntli.net...
Hi Mark,

Thanks for your help.

I get 4 alerts as follows in this order (My computer name is "Jon"):

1. Jon
2. Jon
3. Undefined
4. Jon

I'm getting a little lost now. Is this good, and how do I pass this to my
ASP?

Thank you.
"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:OP**************@TK2MSFTNGP11.phx.gbl...
Try:

<HTML>
<HEAD>
<!-- Start of ActiveX -->
<Script language="javascript">
var oNetwork = new ActiveXObject("WScript.Network")
var sComputerName = oNetwork.ComputerName
alert(sComputerName);
</script>
<!-- End of ActiveX -->
</HEAD>
<BODY>
<FORM NAME="MyForm" ACTION="GetInfo.asp" METHOD="post"><BR>
USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
<INPUT TYPE="hidden" NAME="sComputerName">
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset"><p>
</FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
alert(sComputerName);
alert(MyForm.sComputerName.Value);
MyForm.sComputerName.Value = sComputerName;
alert(MyForm.sComputerName.Value);
-->
</SCRIPT>
</BODY>
</HTML>

What do the alert boxes tell you?

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"NewbieJon" <Ne*******@nospam.com> wrote in message
news:rN**************@newsfe3-win.server.ntli.net...
Hi Joe,

Thanks for your reply.

The security issue with the activex code isn't a problem because this will be live only within our intranet and not on machines that users will play about with.

I'm far from an expert in this field. I've not done any ASP for a few
years, and I've never done any activeX before. I've pretty much thrown
this
code together from samples...hence why theres javascript and vbscript mixed.

Anyway thanks for your code, but unfortunately it doesn't work. The
computer name is not passed through, its just an empty value. It

definately
does grab it though because an output to the screen within the activex
component will show the computer name as I want.

Any suggestions?

Many thanks

Jon
"Joe Fawcett" <jo********@hotmail.com> wrote in message
news:OY*************@tk2msftngp13.phx.gbl...
> "NewbieJon" <an*******@discussions.microsoft.com> wrote in message
> news:14**********************************@microsof t.com...
> > I am attempting to send the variable "sComputerName" from my
ActiveX > script to "GetInfo.asp" using javascript. (Having been advised this

is the
> way to get my ActiveX variable into my ASP script).
> >
> > My code is below. I am getting the following error
"MyForm.oNetwork.Value
> is Null or is not an object". I'm struggling to diagnose what to do

next.
> I'd very much appreciate some help.
> >
> > Many thanks.
> >
> > <HTML><BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
> > METHOD="post" onSubmit="MyFunc()"><!-- Start of
ActiveX --><Script
> language="vbscript">
> > Set oNetwork = CreateObject("WScript.Network")
> > sComputerName = oNetwork.ComputerName
> > </script><!-- End of ActiveX --><BR>
> > USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
> > PASSWORD: <INPUT TYPE="password" NAME="Password"

SIZE="20"><BR><INPUT
> TYPE="hidden" NAME="sComputerName"><INPUT TYPE="submit"
> VALUE="Submit"><INPUT TYPE="reset"><p></FORM><SCRIPT
> LANGUAGE="JavaScript"><!--
> > function MyFunc()
> > {
> > MyForm.sComputerName.Value = MyForm.oNetwork.Value
> > }
> > --></SCRIPT></BODY></HTML>
>
> Firstly this is not going to work unless the particualr zone that this page
> is in has very low security settings. That being said you do not need to
> refer to the form and you can tidy it up a bit. And instead of

mixing > VBSCript and JScript why not all in one language?
>
> <HTML>
> <HEAD>
> <!-- Start of ActiveX -->
> <Script language="jscript">
> var oNetwork = new ActiveXObject("WScript.Network")
> var sComputerName = oNetwork.ComputerName
> </script>
> <!-- End of ActiveX -->
> </HEAD>
> <BODY><FORM NAME="MyForm" ACTION="GetInfo.asp"
> METHOD="post" onSubmit="return MyFunc();"><BR>
> USERNAME: <INPUT TYPE="text" NAME="Username" SIZE="20"><BR>
> PASSWORD: <INPUT TYPE="password" NAME="Password" SIZE="20"><BR>
> <INPUT TYPE="hidden" NAME="sComputerName">
> <INPUT TYPE="submit" VALUE="Submit"><INPUT TYPE="reset"><p></FORM>
> <SCRIPT LANGUAGE="JavaScript">
> <!--
> function MyFunc()
> {
> MyForm.sComputerName.Value = sComputerName;
> return true;
> }
> -->
> </SCRIPT>
> </BODY>
> </HTML>
>
> --
> Joe
>
>



Jul 19 '05 #7
Many thanks to you both, I now have this working.
Jul 19 '05 #8

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

Similar topics

1
by: mjcast | last post by:
I have been working on an ActiveX control in C#. It is packaged in a Windows Control library and the code is in a user control. The control is used as an automation receiver that is used to update a...
0
by: Craig | last post by:
I am having problems getting an ActiveX DLL written in VB6 to call a method in a C# class library component. My C# DLL is called CSharpProject.dll and contains a public class called CSharpClass....
2
by: Harry Stangel | last post by:
Noble reader, My goal is to obtain the current time on the web server and display it in the client's browser. I want the server time displayed independent of the client's current clock setting,...
2
by: Grant H. | last post by:
hi all, i have a strange problem here & i'm not sure how to go about fixing it. Basically, I have a page with an activex control that gets launch with JS when a user clicks a "connect" button....
1
by: stegada | last post by:
Hi, i must determine if client's browsers support ActiveX controls. Is it possible to obtain this information using Javascript? Thank's a lot. Stefano
2
by: Mike John | last post by:
I am trying to use the shell object to send keys to the explorer browser to run the send page funcion. I am receiving the above error only when I put my html file in the web server...
0
by: Frank | last post by:
Any suggestions on how I should handle this? I was asked to convert a small web application that was written in classic ASP into ASP.NET. The original site uses some VBScript to interface with...
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 lost in the Java world. The script at the bottom of...
1
by: kret | last post by:
Hi, this is my first post so first of all I would like to say hello :) Now getting to my problem. In my job I have to create an ActiveX control in .NET 1.1 that can be lunched from IE....
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...
0
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...
0
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,...
0
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...

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.