What is System.Web.dll work? [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 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

Related

How do I pass data from ASP.NET to a ASP.Net Core 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 2 years ago.
Improve this question
The problem is figuring out a way of sending data / requests from an existing ASP.Net application to an ASP.Net Core.
The ASP.Net Core application is currently using version 2.0 framework.
I know there is a way of putting a window inside of an ASP.Net application, and I have already done this.
The issue is to find out a way to read requests, read GUID values and then perform the logic within the ASP.Net core application.
Suggestions please.
Thank you
There are many data transfer options, eg:
1) Both sites can look at the same database
2) They could communicate via an API
This question is very broad.

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.

Create App with Ionic2-Angular2 front and ASP.NET core Back? [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 5 years ago.
Improve this question
how can I create app with Ionic2-Angular2 front-end and ASP.NET core Back-end? in same server. Also I what about multi-platform application.
Yes, you can. In ASP.NET you'll create a web API, that will be consumed from angular code. Here is how you create a web API: https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-web-api
Angular, more precisely the JavaScript which will be generated, does not "know" what kind of back end is used. There just will be an URL and the method how to access it. Your communication will probably embrace HTTP GETs and POSTs.
As long as the resource is accessible with one of the methods,
it does not matter if it is
a static file (post would not make sense in this case)
a PHP script
or ASP.NET Backend
or something else.

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

Send (post) an image from one application to another (get) by URL? [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 7 years ago.
Improve this question
I need to send a picture from one asp.net application to another. My receiver is an asp.net MVC application, but the sender can be a simple console application.
Senario
Application one has a link to an image and send/post this to application two by URL.
Application two receives/get the image and saves it to a folder on the server.
I have heard of REST, asp.net web api and web service but not found any tutorial how to do this.
Application #2, the receiver, has to have REST Web API which accepts a file (an appropriate mime type) and saves it, that's it.

Categories

Resources