servertag

Pass a parameter to server method using JavaScript

I have a public in my code behind page that takes a string. I would like to call this method from javascript. The parameter that I want to pass down is variable that changes from a ddl. So I have something like this: var value = document.getElementById('ddlContact').value; <%=PopulateContactFields("value") %> This p...

Proper syntactic to add server side tags in HTML

Im trying to get a value server side. <web:Column Caption="" ColumnName="View" HyperLink="CatalogItems.aspx?UsgSvcID={0}&DisplayInactiveService=<%m_aServerSideVar %>" HyperLinkField="UsgSvcID" ></web:Column> I'm not sure if I can do this or I need to create a function to do a redirect. Thanks Brad ...