Click here to Skip to main content
15,888,733 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
per7829-Aug-11 8:50
per7829-Aug-11 8:50 
GeneralRe: Remote control a vb.net application from the Internet? is this possible? Pin
Keith Barrow29-Aug-11 10:08
professionalKeith Barrow29-Aug-11 10:08 
Questionwhois - registration "history" Pin
devvvy27-Aug-11 22:15
devvvy27-Aug-11 22:15 
AnswerRe: whois - registration "history" Pin
Gregory Gadow29-Aug-11 5:56
Gregory Gadow29-Aug-11 5:56 
QuestionAccessing DB2 physical file from ASP.NET Pin
Member 322226426-Aug-11 17:33
Member 322226426-Aug-11 17:33 
QuestionAdding dotfuscated assembly to websetup project. Pin
Pritish Sahoo26-Aug-11 4:11
Pritish Sahoo26-Aug-11 4:11 
QuestionHow to register and use MyCustomControl? [modified] Pin
Savun Cheam25-Aug-11 18:48
Savun Cheam25-Aug-11 18:48 
AnswerRe: How to register and use MyCustomControl? Pin
Pravin Patil, Mumbai25-Aug-11 21:32
Pravin Patil, Mumbai25-Aug-11 21:32 
You can register user control either in web.config file or in the web page where you want to use the control.

To register in web.config
<configuration>
  <system.web>   
    <pages>
      <controls>
        <add tagPrefix="prefix" src="path of the control" tagName="tag name"/>
      </controls>
    </pages>
  </system.web>
</configuration>


To register in page at this line at the start of the page:
<%@ Register TagPrefix="prefix" src="path of the control" TagName="tag name"/>


Hope this helps.
All the best.
I quit being afraid when my first venture failed and the sky didn't fall down.

GeneralRe: How to register and use MyCustomControl? Pin
prabhatkumartiwari28-Aug-11 19:23
prabhatkumartiwari28-Aug-11 19:23 
GeneralRe: How to register and use MyCustomControl? Pin
Savun Cheam30-Aug-11 17:09
Savun Cheam30-Aug-11 17:09 
QuestionRepeat table onclick Pin
Nannab24-Aug-11 14:12
Nannab24-Aug-11 14:12 
AnswerRe: Repeat table onclick Pin
Not Active24-Aug-11 16:36
mentorNot Active24-Aug-11 16:36 
GeneralRe: Repeat table onclick Pin
Nannab25-Aug-11 3:28
Nannab25-Aug-11 3:28 
GeneralRe: Repeat table onclick Pin
Not Active25-Aug-11 4:08
mentorNot Active25-Aug-11 4:08 
GeneralRe: Repeat table onclick Pin
Nannab26-Aug-11 15:13
Nannab26-Aug-11 15:13 
GeneralRe: Repeat table onclick Pin
Not Active27-Aug-11 3:53
mentorNot Active27-Aug-11 3:53 
GeneralRe: Repeat table onclick Pin
Nannab27-Aug-11 15:16
Nannab27-Aug-11 15:16 
GeneralRe: Repeat table onclick Pin
Not Active29-Aug-11 9:02
mentorNot Active29-Aug-11 9:02 
Questionhow to put condition under the table which is inside the repeater?? Pin
Dhyanga23-Aug-11 12:05
Dhyanga23-Aug-11 12:05 
AnswerRe: how to put condition under the table which is inside the repeater?? Pin
Not Active23-Aug-11 12:21
mentorNot Active23-Aug-11 12:21 
GeneralRe: how to put condition under the table which is inside the repeater?? Pin
Dhyanga23-Aug-11 12:49
Dhyanga23-Aug-11 12:49 
GeneralRe: how to put condition under the table which is inside the repeater?? Pin
Not Active23-Aug-11 13:06
mentorNot Active23-Aug-11 13:06 
GeneralRe: how to put condition under the table which is inside the repeater?? Pin
Dhyanga23-Aug-11 13:16
Dhyanga23-Aug-11 13:16 
GeneralRe: how to put condition under the table which is inside the repeater?? Pin
Not Active23-Aug-11 13:38
mentorNot Active23-Aug-11 13:38 
GeneralRe: how to put condition under the table which is inside the repeater?? Pin
Dhyanga23-Aug-11 16:42
Dhyanga23-Aug-11 16:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.