Asked by:
ASP.net code to scan for BLE devices

Question
-
Hi, anyone experts in asp.net knows how to create a code for BLE devices ? I need someone to guide me as I am very new in this c#. add me on skype if possible.
- Moved by CoolDadTx Monday, June 11, 2018 1:34 PM ASP.NET related
Sunday, June 10, 2018 3:36 PM
All replies
-
Errr... Something is wrong here. I understand BLE as "Bluethooth Low Energy", so your question is essentially asking about how to scan for Bluetooth devices. But you are asking about ASP.NET. ASP.NET is a technology that runs on a Server, and such a server is unlikely to even have a Bluetooth adapter. And even if the server does have Bluetooth capability, what would you be scanning for? Bluetooth devices in the datacenter where the server is installed? Doesn't make any sense.
If your intention is to scan for Bluetooth devices near the user's browser, then ASP.NET doesn't get involved. You would need to use some type of client technology, such as an ActiveX control or Java applet. These things can be embedded inside a page that is produced by ASP.NET, but they don't really have any relationship with ASP.NET; they are completely different technologies.
Sunday, June 10, 2018 3:49 PM -
Hi, anyone experts in asp.net knows how to create a code for BLE devices ? I need someone to guide me as I am very new in this c#. add me on skype if possible.
I addition to what has already been stated, ASP.NET has its own forum.
https://forums.asp.net/
Sunday, June 10, 2018 8:38 PM -
So its impossible to create using ASP.net ? This is what I have currently created. So when I press scan , it will prompt a list of ble devices.Monday, June 11, 2018 3:48 AM
-
So its impossible to create using ASP.net ?
It impossible to create using ASP.NET, but it is possible to invoke from ASP.NET. If you create the scanning tool using a different technology, such as ActiveX, you can then embed it inside your ASP.NET page and it will be "transparent" to the user (except briefly the first time you run it, when you will be asked for permission to install the ActiveX). You will need, however, to ask in a different forum, since that part would not be done in C#, which is the forum where you originally posted your question.
Monday, June 11, 2018 5:46 AM -
Hi yann123,
Since your question is more related to ASP.NET, you could post a new thread in ASP.NET forum for suitable support.
The Visual C# forum discuss and ask questions about the C# programming language, IDE, libraries, samples, and tools.
Best Regards,
Wendy
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.Monday, June 11, 2018 7:20 AM