I am using query string to get the value of userid for my Search_user_id. but when I debug the code, I always get it as blank,like
""
Here is my code below:-
public bool Save()
{
System.Text.StringBuilder StrPubBldg = new System.Text.StringBuilder();
XmlWriter xw = XmlWriter.Create(StrPubBldg);
xw.WriteStartElement("DocumentElement");
{
xw.WriteStartElement("XXCUS.XXACL_PN_FOLOW_SEARCH_DEFAULT");
xw.WriteElementString("APPLICATION_ID", HidApplicationId.Value);
xw.WriteElementString("TRAN_TYPE", "SD");
xw.WriteElementString("SEARCH_NAME", Txt_SearchName.Value);
xw.WriteElementString("SEARCH_TYPE", RdoPrivate.Checked ? "PR" : "PU");
xw.WriteElementString("SEARCH_DEFAULT", Cmb_ ...
Go to the complete details ...