Hi this is my row in gridview in ASP.Net

<ItemTemplate>
<a id="aOpen" onclick="javascript:Open(<%#((DataRowView)Container.DataItem)['DocTypeCode'] %>)" >A_<%#((DataRowView)Container.DataItem)["Id"] %></a>
</ItemTemplate>

Here is my javascript

<script type="text/javascript">
function Open(var id) {
        var strPageURL = '<%= ResolveClientUrl("~/View.aspx?id="+id) %>';
        OpenCustomDialogWithRefresh(strPageURL, 750, 500, "View Document Type");
        return true;
}
</script>

I would like to pass the Id value from the gridview to the javascript and open a new page with query string. How should I try ? Mine does not work.

link|improve this question

67% accept rate
feedback

2 Answers

I think you want simply:

<%# Eval("DocTypeCode") %>


onclick='javascript:Open(<%# Eval("DocTypeCode") %>)" >A_<%# Eval("Id") %></a>

Also note that this

<a id="aOpen"

is a huge problem, since all dom elements must have unique ids

link|improve this answer
So how should I try ? – kevin Dec 15 '11 at 3:03
@kevin - you mean how should you assign unique ids to your anchors? Unless you actually need to reference these anchors in a script by id somewhere, I would say just leave off the id altogether – Adam Rackis Dec 15 '11 at 3:04
How about <input type="button" value="<%#((DataRowView)Container.DataItem)["DocTypeCode"] %>" onclick="javascript:Open()" /> ? – kevin Dec 15 '11 at 3:08
1  
@kevin - you can just add the values you need to your querystring using Eval like in my answer above – Adam Rackis Dec 15 '11 at 3:10
1  
@kevin - just start slow. See if you can get the content output just as plain text in your ItemTemplate. then slowly add in the other stuff around it -- like your anchors with querystrings and such. – Adam Rackis Dec 15 '11 at 3:29
show 5 more comments
feedback

I think you should try this below code:

  onclick="javascript:Open('<%#Eval("DocTypeCode") %>')"

is a syntax problem, I should add the character ''

Best Regards, Kazaf

link|improve this answer
Yes , you are right. Thanks a lot . – kevin Dec 15 '11 at 6:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.