I have an ASP.net 开发者_如何学运维form on a website. I need to edit its actions based on the user selections, and make the radio button list allow multiple choices.
I have the compiled web application, all passwords and access, all files from the original build (I believe), Visual Studio 2010, and no idea what I'm doing.
The engineer who originally built the site has moved to India, and is no longer available.
I need to load this website as a project in Visual Studio. I need to find the form files. I need to edit the options, and the actions they produce.
Even pointing me in the direction of a way to learn what I need to know will help. If you need more information, tell me what you need.
Thanks in advance for your help.
You'll need the original source files (it sounds like you have them). If it is a Web Site Project, then in Visual Studio you can do File -> Open -> WebSite and pick the directory containing those files; if it is a Web Application Project, then there should be a .csproj or a .vbproj file to open.
In order to allow the user to make multiple selections, you should use a checkbox list instead of radio buttons.
You can probably find more about ASP.NET on http://www.asp.net/get-started (I'd guess for your project that http://www.asp.net/web-forms is the first step to take).
精彩评论