Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Registering ASP.Net Time picker control

I downloaded this time picker control ASP.NET Time Picker Control however, I am not able to see it in the HTML markup of the page.

Which step am I missing?

Update:
Based on the response on this post Time Picker Error, I did enter

 `<%@ Register TagPrefix="cc1" TagName="TimeSelector" Assembly="TimePicker" Namespace="MKB.TimePicker"  %>`  

but I still cannot see it in my HTML marckup

like image 251
Csharp Avatar asked Mar 09 '26 16:03

Csharp


1 Answers

The instructions you have, are slightly off from my experience.

  • Place the dll to a shared folder on your PC. (Example: C:\ProgramFiles\TimePicker.)
  • In Visual Studio ToolBox window, right click in the General area and click Choose Items.
  • In the Toolbox Items dialog, click the Browse button towards the bottom.
  • Navigate to the dll in C:\ProgramFiles\TimePicker and click Open.
  • After you click Open, your Time Picker should be in the list, then click Ok.
  • You should be able to see the control in the toolbox.
like image 98
user279521 Avatar answered Mar 12 '26 05:03

user279521