ASP.NET C# - NavigateURL with RecordID combine

milacay

I am new to ASP.NET. What I try to do is very basic, but I couldn't get it to work. If you see the NavigateURL link below, I try to combine the URL with "RefNum" from the database Recordset, but it keeps failing with "The server tag is not well formed." error.

I am not sure how to combine the URL with a record from recordset.

Please help, Thanks.

<asp:TemplateField HeaderText="UploadDate" SortExpression="UploadDate" HeaderStyle-ForeColor="White"  ItemStyle-HorizontalAlign="Center"> 
  <ItemTemplate> 
     <asp:HyperLink   
        ID="HyperLink1"   
        runat="server" ForeColor="Blue"
        Text='<%# Eval("UploadDate") %>' 
        NavigateUrl="/ASPX/UploadContact/UploadContact.aspx?RefNum='<%# Bind("RefNum")%>'"                               
        />  
</ItemTemplate> 
</asp:TemplateField>
ScottE

Use eval with a formatter:

<asp:HyperLink   
        ID="HyperLink1"   
        runat="server" ForeColor="Blue"
        Text='<%# Eval("UploadDate") %>' 
        NavigateUrl='<%# Eval("RefNum", "/ASPX/UploadContact/UploadContact.aspx?RefNum={0}")%>'                               
        /> 

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

ASP.NET C# - NavigateURL with RecordID combine

From Dev

NavigateUrl on Repeater ASP.net

From Dev

NavigateUrl on Repeater ASP.net

From Dev

Set an ASP.NET HyperLink NavigateUrl to a relative path?

From Dev

Asp.Net combine C# and Angular

From Dev

Right syntax of asp MenuItem NavigateUrl

From Dev

asp:hyperLink NavigateURL and double quote characters error

From Dev

How to combine 2 local variables into 1 global variable in C# using ASP.NET MVC 4

From Dev

How to combine 2 local variables into 1 global variable in C# using ASP.NET MVC 4

From Dev

Combine multiple SQL queries in SQL Server 2008 into a datatable on ASP.NET using C#

From Dev

Disable the NavigateUrl property on the HyperLink in c#

From Dev

combine two dd/mm/yyy string arrays into one while having the dates in order asp.net c#

From Dev

Combine ASP.NET Membership auth and HTTP auth in MVC application

From Dev

How to combine ASP.NET skin file and DevExpress theme assembly?

From Dev

How to combine two view models in razor MVC asp.net

From Dev

Combine detail and delete views ASP.Net MVC 5

From Dev

How to combine date time and Timezone offset in an ASP.net application?

From Dev

How to combine ASP.NET webpages site with a MVC 6 site

From Dev

combine asp net projects and mvc3 in one single solution

From Dev

How to combine two view models in razor MVC asp.net

From Dev

Best Practice - ASP.NET Combine all JavaScript output

From Dev

How to combine ASP.NET webpages site with a MVC 6 site

From Dev

ASP.NET SQL datasource combine two queries

From Dev

Set custom NavigateUrl value from gridview c#

From Dev

asp:hyperlink href won't show up even though i populate navigateurl

From Dev

How to Combine 2 Result (add Column) from Linq Select into 1 Table or CrossJoin in ASP.Net Core

From Dev

Combine content for multiple markers in one infobox in google maps through Asp.net

From Dev

SQL IN operator in asp.net C#

From Dev

Routing multiple pages in ASP .net c#

Related Related

  1. 1

    ASP.NET C# - NavigateURL with RecordID combine

  2. 2

    NavigateUrl on Repeater ASP.net

  3. 3

    NavigateUrl on Repeater ASP.net

  4. 4

    Set an ASP.NET HyperLink NavigateUrl to a relative path?

  5. 5

    Asp.Net combine C# and Angular

  6. 6

    Right syntax of asp MenuItem NavigateUrl

  7. 7

    asp:hyperLink NavigateURL and double quote characters error

  8. 8

    How to combine 2 local variables into 1 global variable in C# using ASP.NET MVC 4

  9. 9

    How to combine 2 local variables into 1 global variable in C# using ASP.NET MVC 4

  10. 10

    Combine multiple SQL queries in SQL Server 2008 into a datatable on ASP.NET using C#

  11. 11

    Disable the NavigateUrl property on the HyperLink in c#

  12. 12

    combine two dd/mm/yyy string arrays into one while having the dates in order asp.net c#

  13. 13

    Combine ASP.NET Membership auth and HTTP auth in MVC application

  14. 14

    How to combine ASP.NET skin file and DevExpress theme assembly?

  15. 15

    How to combine two view models in razor MVC asp.net

  16. 16

    Combine detail and delete views ASP.Net MVC 5

  17. 17

    How to combine date time and Timezone offset in an ASP.net application?

  18. 18

    How to combine ASP.NET webpages site with a MVC 6 site

  19. 19

    combine asp net projects and mvc3 in one single solution

  20. 20

    How to combine two view models in razor MVC asp.net

  21. 21

    Best Practice - ASP.NET Combine all JavaScript output

  22. 22

    How to combine ASP.NET webpages site with a MVC 6 site

  23. 23

    ASP.NET SQL datasource combine two queries

  24. 24

    Set custom NavigateUrl value from gridview c#

  25. 25

    asp:hyperlink href won't show up even though i populate navigateurl

  26. 26

    How to Combine 2 Result (add Column) from Linq Select into 1 Table or CrossJoin in ASP.Net Core

  27. 27

    Combine content for multiple markers in one infobox in google maps through Asp.net

  28. 28

    SQL IN operator in asp.net C#

  29. 29

    Routing multiple pages in ASP .net c#

HotTag

Archive