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?
Related
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 6 years ago.
Improve this question
I am looking to make a small windows utility that will let the user browse to a file directory. Is there a good C# method (Windows) to execute this?
If you are using WinForms, you want FolderBrowserDialog.
See here: https://msdn.microsoft.com/en-us/library/system.windows.forms.folderbrowserdialog(v=vs.110).aspx
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 8 years ago.
Improve this question
I am trying to implement pay-wall mechanism in my MVC 4 application.
The requirement is to restrict access to some pages of a PDF file in preview mode and allow the complete file to display after pay-wall subscription.
i searched some links but they are providing only theoretical information about pay-wall.
Please suggest some link or examples for implementing it.
Any kind of help will be appreciated.
Thanks in advance.
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
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 new in MVC and I need to modify EditorForModel for using permissions (show/Not show, disabled/Enable, etc) in the fields from my DB, according with kind of user. Can anybody help me ?
You can create custom editors for your models by adding a EditorTemplates folder in your Views/Shared folder. More info about this process can be found here – http://blogs.msdn.com/b/nunos/archive/2010/02/08/quick-tips-about-asp-net-mvc-editor-templates.aspx
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
I have published web-site.
Can I get Project web-site from published web-site (ASP.NET Web Forms)?
Can I get Project web-site from published web-site
Yes you can but you shouldn't unless you are the owner of the code.
But you will have to decompile each of the dll then create proper classes and a project and add them to your project.