Share button on a https site [closed] - c#

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Hi can i integrate share buttons like facebook, twitter on my https site? Recently in my site i have integrated these buttons, but it looks like it prevents loading of these social media buttons since it is a https site. Is there any way to integrate these buttons?

You cannot load HTTP resources on an HTTPS page.
You need to load all external resources over HTTPS.

Related

How to log in ASP.NET project? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 days ago.
Improve this question
My friend has a website project, which hosts on ASP.net. He gives me password and user name but I don't know how to log in. This project already has a domain and available on broswer.
I went to some hostings for ASP.net but they are not the ones that my friend uses. He just give me the pass and user name and said that windows hosting is asp.net, and leave me alone with that. What should I do now with this project?

can i start app using blazor server then load webassembly? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 months ago.
Improve this question
can I load, render the main page first using blazor server, then switch to a subpage and run it using webassembly?
I know I can create webassembly + asp.net but then the main page is displayed using webassembly (seo unfriendly)
... but then the main page is displayed (seo unfriendly)
What you are looking for is called "server prerendering".
It requires hosting on asp.net (using the Webassembly hosted model).
See the official docs and also search the term for more walk-throughs and videos.
Here is a useful blog that links to a few more.

Finding Web.API URL from a website [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a website which calls web API https://www.dreamtrips.com/
How can I find the web APIs used by this website to call different data?
Will fiddler give you the list of web API URLs called by this website?
You can use network tab in developer tools (F12) in browser to monitor all network calls. However, if the site does not have a public web API, the methods that are called will most likely be protected by CORS policy.

send files in a real time Asp.net application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
so i'm working on a chat application with signalR. And i want to know if there is a way to send attachement and files ?
I know we can't do that using SignalR but is there another way ?
One way would be to use normal Http transfer, and manage the download/upload linking using SignalR,
check out this link:
https://github.com/garethrbrown/aspnet-signalr-upload-progress-bar

What is System.Web.dll work? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm going on the process about network.
here is the phrase that occur frequently "System.Web.dll",
we all know the file "System.Web.dll" is very important to website,
but how does it exactly effect on the website,
can I continue to browser my web after I delete the file ?
what does it effect to my website ?
System.Web.Dll is old library responsible for whole http-protocol working. requests sending and creation.
You can not live without in either ASP.NET MVC or ASP.NET Web forms because it contains HttpContext - class which is responsible for client-server communications.
If you need to use not web, but networks like LAN you probably need System.Net.dll

Categories

Resources