Example usage
code behind definition
public string srTitle = "";
public string srDescription = "";
public string srKeywords = "";
aspx page usage
<title><%=srTitle %></title>
<meta name="keywords" content="<%=srKeywords %>" />
<meta name="description" content="<%=srDescription %>" />
Is this usage correct ? Are there any other better, effective or etc way?
Thank you
asp.net 4 , C#