473,396 Members | 2,018 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,396 software developers and data experts.

How do I simply open an ASP page and possibly pass it data from a C# form

Exactly what the subject says.
I have an ASP page that I want my C# windows application to open in
Internet Explorer, and if possible have it send along a list of values
from a list box. Thank you.
Nov 15 '05 #1
8 3343
That would mostly depend on the page.

Does it take parameters, or are you trying to fill in textboxes on the page?

If the page take paramters build a string with the values and pass it to
System.Diagnostics.Process.Start something like this:

System.Diagnostics.Process.Start("http://www.myhost.com?parm1=value1&parm2=v
alue2");

HTH
Brian W

"Brian F" <ss*******@Yahoo.com> wrote in message
news:93**************************@posting.google.c om...
Exactly what the subject says.
I have an ASP page that I want my C# windows application to open in
Internet Explorer, and if possible have it send along a list of values
from a list box. Thank you.

Nov 15 '05 #2
heres a few classes i wrote a while back,

it probably needs a bit of tidying up, but it works

some nice functions for setting the values of an HTML form once the page has
loaded + submitting a button from a windows forms app.

The main one you'll be interested in though is...
public void Navigate(string _url, string _valuedatapairs)..

this method you just call like :

webcontrol.Navigate("www.yahoo.co.uk","param1=one& param2=two&etc=easyasthis"
);

if you want to pass values to an array from a list box, use a for loop, and
make each parameter the same name.... but you probably
know what to do from here.

also started doing some work on showing a custom context menu -

anyway, hope this helps

(you'll need to get VS.NET to create a wrapper for the WebControl) - i
haven't included it here

sam martin
/////////////////////////////////////////////////////////////////////////

public class DocUIResponseArgs : System.EventArgs
{

private string _appref;
private string _appdata;

public DocUIResponseArgs(string _r, string _d)
{
this._appdata = _d;
this._appref = _r;
}

public string AppRef
{
get { return this._appref; }
}

public string AppData
{
get { return this._appdata; }
}
}

public class DocUIHandler
{
private string _appref;
private DocUIResponseHandler _handler;

public DocUIHandler(string _r, DocUIResponseHandler _h)
{
this._appref = _r;
this._handler = _h;
}

public string AppRef
{
get { return this._appref; }
}

public DocUIResponseHandler Handler
{
get { return this._handler; }
}
}

public delegate void DocUIResponseDelegate(object sender, DocUIResponseArgs
e);
public delegate void DocumentCompleteDelegate(object sender,
DocUIResponseArgs e);
public delegate void DocUIResponseHandler(object sender, DocUIResponseArgs
e);

/// <summary>
/// Summary description for WebControl.
/// </summary>
public class WebControl : System.Windows.Forms.UserControl,
IDocHostUIHandler
{
private string _urlbase;
private AxSHDocVw.AxWebBrowser axWebBrowser;

private System.Collections.ArrayList _delegatemap;

public event DocumentCompleteDelegate DocumentCompleteEvent;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;

public WebControl()
{
// This call is required by the Windows.Forms Form Designer.
InitializeComponent();

this._delegatemap = new ArrayList();

_urlbase =
System.Configuration.ConfigurationSettings.AppSett ings["Accuman.Web.Server"]
;
}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

public void Navigate(string _url, string _valuedatapairs)
{
//_delegatemap.Clear();

object _ourl = this._urlbase+_url;
object _onull = new object();

object _header = "Content-Type: application/x-www-form-urlencoded" + "\n"
+ "\r";

string _data =_valuedatapairs;

object _odata = System.Text.ASCIIEncoding.ASCII.GetBytes(_data);

this.axWebBrowser.Navigate2(ref _ourl,ref _onull,ref _onull,ref
_odata,ref _header);

}

public void RefreshPage()
{
object _onull = null;

this.axWebBrowser.Refresh2(ref _onull);

}

public void SetFormFieldValue(string _fieldid, string _value)
{
IHTMLDocument2 doc = (IHTMLDocument2)this.axWebBrowser.Document;
mshtml.HTMLInputElementClass _f =
(mshtml.HTMLInputElementClass)doc.all.item(_fieldi d,null);

_f.value = _value;
}

public void SubmitForm(string _formid)
{
IHTMLDocument2 doc = (IHTMLDocument2)this.axWebBrowser.Document;
mshtml.HTMLFormElementClass _f =
(mshtml.HTMLFormElementClass)doc.forms.item(null,0 );

object _oevt = new object();

_f.submit();
}

#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new
System.Resources.ResourceManager(typeof(WebControl ));
this.axWebBrowser = new AxSHDocVw.AxWebBrowser();

((System.ComponentModel.ISupportInitialize)(this.a xWebBrowser)).BeginInit();
this.SuspendLayout();
//
// axWebBrowser
//
this.axWebBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
this.axWebBrowser.Enabled = true;
this.axWebBrowser.Location = new System.Drawing.Point(0, 0);
//this.axWebBrowser.OcxState =
((System.Windows.Forms.AxHost.State)(resources.Get Object("axWebBrowser.OcxSt
ate")));
this.axWebBrowser.Size = new System.Drawing.Size(150, 150);
this.axWebBrowser.TabIndex = 0;
this.axWebBrowser.DocumentComplete += new
AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent Handler(this.OnDocumentCom
plete);
//
// WebControl
//
this.Controls.Add(this.axWebBrowser);
this.Name = "WebControl";

((System.ComponentModel.ISupportInitialize)(this.a xWebBrowser)).EndInit();
this.ResumeLayout(false);

}
#endregion

// IDocHostUIHandler Implementations
void IDocHostUIHandler.EnableModeless(int fEnable)
{

}

void IDocHostUIHandler.FilterDataObject(MsHtmHstInterop .IDataObject pDO,
out MsHtmHstInterop.IDataObject ppDORet)
{
ppDORet = null;
}

void IDocHostUIHandler.GetDropTarget(IDropTarget pDropTarget, out
IDropTarget ppDropTarget)
{
ppDropTarget = null;
}

void IDocHostUIHandler.GetExternal(out object ppDispatch)
{
//ppDispatch = new PopulateClass(this);
ppDispatch = null;
}

void IDocHostUIHandler.GetHostInfo(ref _DOCHOSTUIINFO pInfo)
{

}

void IDocHostUIHandler.GetOptionKeyPath(out string pchKey, uint dw)
{
pchKey = null;
}

void IDocHostUIHandler.HideUI()
{

}

void IDocHostUIHandler.OnDocWindowActivate(int fActivate)
{

}

void IDocHostUIHandler.OnFrameWindowActivate(int fActivate)
{

}

void IDocHostUIHandler.ResizeBorder(ref MsHtmHstInterop.tagRECT prcBorder,
IOleInPlaceUIWindow pUIWindow, int fRameWindow)
{

}

void IDocHostUIHandler.ShowContextMenu(uint dwID, ref
MsHtmHstInterop.tagPOINT ppt, object pcmdtReserved, object pdispReserved)
{
throw new COMException("", 0);
}

void IDocHostUIHandler.ShowUI(uint dwID, IOleInPlaceActiveObject
pActiveObject, IOleCommandTarget pCommandTarget, IOleInPlaceFrame pFrame,
IOleInPlaceUIWindow pDoc)
{

}

void IDocHostUIHandler.TranslateAccelerator(ref tagMSG lpmsg, ref Guid
pguidCmdGroup, uint nCmdID)
{

}

void IDocHostUIHandler.TranslateUrl(uint dwTranslate, ref ushort pchURLIn,
IntPtr ppchURLOut)
{

}

void IDocHostUIHandler.UpdateUI()
{

}

private void OnDocumentComplete(object sender,
AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent e)
{

this.Parent.Cursor = System.Windows.Forms.Cursors.Default;

ICustomDoc cDoc = (ICustomDoc)this.axWebBrowser.Document;
cDoc.SetUIHandler((IDocHostUIHandler)this);

// Get the document.
IHTMLDocument2 doc = (IHTMLDocument2)this.axWebBrowser.Document;

if (DocumentCompleteEvent!=null)
DocumentCompleteEvent(this, new
DocUIResponseArgs(doc.body.getAttribute("appref",0 ).ToString(),doc.body.getA
ttribute("appdata",0).ToString()));

foreach (DocUIHandler _h in this._delegatemap)
{
object _name = _h.AppRef;

mshtml.HTMLButtonElement _a =
(mshtml.HTMLButtonElement)doc.all.item(_name,null) ;
((mshtml.HTMLButtonElementEvents2_Event)_a).onclic k += new
HTMLButtonElementEvents2_onclickEventHandler(this. Button_onclick);

}
}

public void RegisterUIHandler(string _appref,DocUIResponseHandler
_handler)
{
this._delegatemap.Add(new DocUIHandler(_appref,_handler));
}

public void RemoveUIHandlers()
{

this._delegatemap.Clear();

}

public delegate bool BrowserClickHandler( IHTMLEventObj e );

private bool Button_onclick(IHTMLEventObj e)
{
if (this.InvokeRequired == true)
{
this.BeginInvoke( new BrowserClickHandler(
this.Button_onclick ), new object[] { e } );

}
else
{
string _appref = e.srcElement.id;
if (_appref.Length>0)
{
foreach (DocUIHandler _h in this._delegatemap)
{
if (_h.AppRef == _appref)
{
e.cancelBubble = true;
_h.Handler(this,new
DocUIResponseArgs(e.srcElement.getAttribute("appre f",0).ToString(),e.srcElem
ent.getAttribute("appdata",0).ToString()));
break;
}
}
}
}

return false;
}

}
"Brian F" <ss*******@Yahoo.com> wrote in message
news:93**************************@posting.google.c om...
Exactly what the subject says.
I have an ASP page that I want my C# windows application to open in
Internet Explorer, and if possible have it send along a list of values
from a list box. Thank you.

Nov 15 '05 #3
Brian,

In order to do this, you are going to have to create an instance of
InternetExplorer. Once you have that, you will have to connect to the
IWebBrowser2 interface, and then get the IHTMLDocument2 instance of the
document hosted in the browser. With that, you can access elements of the
DOM for the page that is being viewed, and subsequently manipulate it, etc,
etc.

To access internet explorer, you have to set a reference in COM to
SHDocVw.dll (Microsoft Internet Controls). Also, you will have to set a
reference to MSHTML.tlb, which there should already be a managed wrapper for
under the .NET tab in the references dialog, under Microsoft.mshtml.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian F" <ss*******@Yahoo.com> wrote in message
news:93**************************@posting.google.c om...
Exactly what the subject says.
I have an ASP page that I want my C# windows application to open in
Internet Explorer, and if possible have it send along a list of values
from a list box. Thank you.

Nov 15 '05 #4
Nicholas,

Why?

The OP said he just wants to open his page in IE passing in the parameters,
he said nothing about the browser being imbedded on his form.

My solution may not specifically open IE but it will open the default
browser.
Regards
Brian W
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:u$**************@TK2MSFTNGP10.phx.gbl...
Brian,

In order to do this, you are going to have to create an instance of
InternetExplorer. Once you have that, you will have to connect to the
IWebBrowser2 interface, and then get the IHTMLDocument2 instance of the
document hosted in the browser. With that, you can access elements of the
DOM for the page that is being viewed, and subsequently manipulate it, etc, etc.

To access internet explorer, you have to set a reference in COM to
SHDocVw.dll (Microsoft Internet Controls). Also, you will have to set a
reference to MSHTML.tlb, which there should already be a managed wrapper for under the .NET tab in the references dialog, under Microsoft.mshtml.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian F" <ss*******@Yahoo.com> wrote in message
news:93**************************@posting.google.c om...
Exactly what the subject says.
I have an ASP page that I want my C# windows application to open in
Internet Explorer, and if possible have it send along a list of values
from a list box. Thank you.


Nov 15 '05 #5
Brian,

My assumption is that when the OP said "pass it data" it meant to pass
it data from the app to a form on the page. If it is a form, then more
likely than not, it is going to be submitted with a POST, and not a get, in
which case, you can not just append the values to the URL. You would have
to automate IE in order to populate the form and submit it through an
external instance of IE.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian W" <brianw@gold_death_2_spam_rush.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Nicholas,

Why?

The OP said he just wants to open his page in IE passing in the parameters, he said nothing about the browser being imbedded on his form.

My solution may not specifically open IE but it will open the default
browser.
Regards
Brian W
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:u$**************@TK2MSFTNGP10.phx.gbl...
Brian,

In order to do this, you are going to have to create an instance of
InternetExplorer. Once you have that, you will have to connect to the
IWebBrowser2 interface, and then get the IHTMLDocument2 instance of the
document hosted in the browser. With that, you can access elements of the DOM for the page that is being viewed, and subsequently manipulate it,

etc,
etc.

To access internet explorer, you have to set a reference in COM to
SHDocVw.dll (Microsoft Internet Controls). Also, you will have to set a
reference to MSHTML.tlb, which there should already be a managed wrapper

for
under the .NET tab in the references dialog, under Microsoft.mshtml.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian F" <ss*******@Yahoo.com> wrote in message
news:93**************************@posting.google.c om...
Exactly what the subject says.
I have an ASP page that I want my C# windows application to open in
Internet Explorer, and if possible have it send along a list of values
from a list box. Thank you.



Nov 15 '05 #6
Hi Nicholas,

I think that Brian's assumption is the correct one, the OP said an ASP
page, not an ASP.NET page, in ASP is usually used request["VARNAME"] and the
request object iterate in both the GET and POST collection ( do not remember
if those are the correct name ) so I think that his solution will do the
trick here.
Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:uW**************@TK2MSFTNGP09.phx.gbl...
Brian,

My assumption is that when the OP said "pass it data" it meant to pass
it data from the app to a form on the page. If it is a form, then more
likely than not, it is going to be submitted with a POST, and not a get, in which case, you can not just append the values to the URL. You would have
to automate IE in order to populate the form and submit it through an
external instance of IE.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian W" <brianw@gold_death_2_spam_rush.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Nicholas,

Why?

The OP said he just wants to open his page in IE passing in the

parameters,
he said nothing about the browser being imbedded on his form.

My solution may not specifically open IE but it will open the default
browser.
Regards
Brian W
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote

in
message news:u$**************@TK2MSFTNGP10.phx.gbl...
Brian,

In order to do this, you are going to have to create an instance of InternetExplorer. Once you have that, you will have to connect to the
IWebBrowser2 interface, and then get the IHTMLDocument2 instance of the document hosted in the browser. With that, you can access elements of the DOM for the page that is being viewed, and subsequently manipulate it,

etc,
etc.

To access internet explorer, you have to set a reference in COM to
SHDocVw.dll (Microsoft Internet Controls). Also, you will have to set a reference to MSHTML.tlb, which there should already be a managed wrapper
for
under the .NET tab in the references dialog, under Microsoft.mshtml.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian F" <ss*******@Yahoo.com> wrote in message
news:93**************************@posting.google.c om...
> Exactly what the subject says.
> I have an ASP page that I want my C# windows application to open in
> Internet Explorer, and if possible have it send along a list of

values > from a list box. Thank you.



Nov 15 '05 #7
Ignacio,

Perhaps we should ask the OP? If they know that the request mechanism
uses GET in the HTTP protocol, then Brian's suggestion will work. However,
if it requires a POST, then my suggestion will have to be used, as the OP
will have to call the Navigate method to pass the POST parameters involved.

Also, whether or not it is an ASP page, ASP.NET, PERL, etc, etc, doesn't
matter. ASP doesn't lock you into using GET or POST exclusively for getting
data to the server from the client.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:uF**************@tk2msftngp13.phx.gbl...
Hi Nicholas,

I think that Brian's assumption is the correct one, the OP said an ASP
page, not an ASP.NET page, in ASP is usually used request["VARNAME"] and the request object iterate in both the GET and POST collection ( do not remember if those are the correct name ) so I think that his solution will do the
trick here.
Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:uW**************@TK2MSFTNGP09.phx.gbl...
Brian,

My assumption is that when the OP said "pass it data" it meant to pass
it data from the app to a form on the page. If it is a form, then more
likely than not, it is going to be submitted with a POST, and not a get, in
which case, you can not just append the values to the URL. You would have to automate IE in order to populate the form and submit it through an
external instance of IE.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian W" <brianw@gold_death_2_spam_rush.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Nicholas,

Why?

The OP said he just wants to open his page in IE passing in the

parameters,
he said nothing about the browser being imbedded on his form.

My solution may not specifically open IE but it will open the default
browser.
Regards
Brian W
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote
in
message news:u$**************@TK2MSFTNGP10.phx.gbl...
> Brian,
>
> In order to do this, you are going to have to create an instance of > InternetExplorer. Once you have that, you will have to connect to
the > IWebBrowser2 interface, and then get the IHTMLDocument2 instance of

the > document hosted in the browser. With that, you can access elements of the
> DOM for the page that is being viewed, and subsequently manipulate
it, etc,
> etc.
>
> To access internet explorer, you have to set a reference in COM to > SHDocVw.dll (Microsoft Internet Controls). Also, you will have to set a > reference to MSHTML.tlb, which there should already be a managed wrapper for
> under the .NET tab in the references dialog, under Microsoft.mshtml.
>
>
> Hope this helps.
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "Brian F" <ss*******@Yahoo.com> wrote in message
> news:93**************************@posting.google.c om...
> > Exactly what the subject says.
> > I have an ASP page that I want my C# windows application to open
in > > Internet Explorer, and if possible have it send along a list of

values > > from a list box. Thank you.
>
>



Nov 15 '05 #8
I didn't mean to start a holy-war. ;)

The only thing that is clear here is that we both interpreted the OP
differently, as such, we both answered appropriately given our differing
interpretations.

I know better that to second-guess Nicholas, I was just trying to understand
why he answered the way he did, and now I know ;)

Regards
Brian W

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:uW**************@TK2MSFTNGP09.phx.gbl...
Brian,

My assumption is that when the OP said "pass it data" it meant to pass
it data from the app to a form on the page. If it is a form, then more
likely than not, it is going to be submitted with a POST, and not a get, in which case, you can not just append the values to the URL. You would have
to automate IE in order to populate the form and submit it through an
external instance of IE.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian W" <brianw@gold_death_2_spam_rush.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Nicholas,

Why?

The OP said he just wants to open his page in IE passing in the

parameters,
he said nothing about the browser being imbedded on his form.

My solution may not specifically open IE but it will open the default
browser.
Regards
Brian W
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote

in
message news:u$**************@TK2MSFTNGP10.phx.gbl...
Brian,

In order to do this, you are going to have to create an instance of InternetExplorer. Once you have that, you will have to connect to the
IWebBrowser2 interface, and then get the IHTMLDocument2 instance of the document hosted in the browser. With that, you can access elements of the DOM for the page that is being viewed, and subsequently manipulate it,

etc,
etc.

To access internet explorer, you have to set a reference in COM to
SHDocVw.dll (Microsoft Internet Controls). Also, you will have to set a reference to MSHTML.tlb, which there should already be a managed wrapper
for
under the .NET tab in the references dialog, under Microsoft.mshtml.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Brian F" <ss*******@Yahoo.com> wrote in message
news:93**************************@posting.google.c om...
> Exactly what the subject says.
> I have an ASP page that I want my C# windows application to open in
> Internet Explorer, and if possible have it send along a list of

values > from a list box. Thank you.



Nov 15 '05 #9

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

Similar topics

13
by: Mimi | last post by:
Hello, I am having trouble using the session vars in PHP 4.3.9 OS: Win XP Prof Web Server IIS (is local and there are no links to other servers from the web pages I work on) Browser: IE 6.0 ...
6
by: anon | last post by:
Post Forwarding question...... For this control below, <asp:Button runat="server" PostTargetUrl="page2.aspx" /> The Attribute: PostTargetUrl="page2.aspx" Is this PostTargetUrl Attribute...
3
by: Scott | last post by:
Here is the scenario. I need to launch a popup using window.open, but can't pass everything i need to pass on the querystring. So I thought I would set a cookie. Basically I do: ...
2
by: Lajos Kuljo | last post by:
Hi, if I opened a php-page using ... onclick=\"help=window.open('help.php', 'Help', 'innerHeight=400,innerWidth=400,screenX=555,screenY=250,dependent=Yes,bar=Yes'); .... is there a way to...
2
by: Rashrashetta | last post by:
Hi all, I am a beginner in using ASP.net, and I want to ask: If I have two web-forms in the same project(Web-Application) and I want one of them to open the another via a button? How can I do...
1
by: Vaughn Haybittle | last post by:
Hi, I have an asp.net page with three Drow-Down-Lists and a Gridview server control. I want to open a new window from this page and open another .aspx page in this window. I also want to be...
6
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, I am thinking about doing this since I got several cases that some of our internal users open more than one browser at the same time from our server. When one of the transactions was not...
13
by: Bob Jones | last post by:
Here is my situation: I have an aspx file stored in a resource file. All of the C# code is written inline via <script runat="server"tags. Let's call this page B. I also have page A that contains...
7
by: Andy B | last post by:
I have a class I am creating for data access. I need to access controls from inside the class that are on a particular page. How do I do this? or is creating an instance of the page class and using...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.