web user control
-
i want create ascx page . i want to create lookup design vijaya
vijaya
-
i want create ascx page . i want to create lookup design vijaya
vijaya
Not sure what your question is here. In your web project add a new item it is called web user control. Inside that control do your lookup design. Then when you want to include it into a web page you need two lines of code: First you register the user control, so at the top of the page right below the <@ Page directive you need something similar to this: <%@ Register TagPrefix="uc1" TagName="LookupControl" Src="~/Controls/LookupDesign.ascx" %> Then in your code you need to add this: Don't know if that answered your question or not. Ben
-
i want create ascx page . i want to create lookup design vijaya
vijaya
kvijayajyothy wrote:
i want create ascx page
From the solution explorer, navigate to the folder and right click 'Add New Web User Control'.
kvijayajyothy wrote:
i want to create lookup design
Your web designer should be able to advise this on. Or if you are a web designer yourself, try using Dreamweaver or Frontpage.
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Not sure what your question is here. In your web project add a new item it is called web user control. Inside that control do your lookup design. Then when you want to include it into a web page you need two lines of code: First you register the user control, so at the top of the page right below the <@ Page directive you need something similar to this: <%@ Register TagPrefix="uc1" TagName="LookupControl" Src="~/Controls/LookupDesign.ascx" %> Then in your code you need to add this: Don't know if that answered your question or not. Ben
i have form which displays data in grid based on query passed and condition selected. now i want to call that page in any page when i click on button so what is the best method? so i thought ascx is best method i used lookup page goes off when i place currsor out side the pan and even when i click on any option in the lookup panel like dropdown list
vijaya
-
i have form which displays data in grid based on query passed and condition selected. now i want to call that page in any page when i click on button so what is the best method? so i thought ascx is best method i used lookup page goes off when i place currsor out side the pan and even when i click on any option in the lookup panel like dropdown list
vijaya