Console.WriteLine("FilterProductBySearchText:" + ProductSearchText);
-- Not This.
Console.Write("FilterProductBySearchText:" + ProductSearchText);
The following will output to the “Console” tab of the browser debugging window.
Note: Use WriteLine() and not Write().
Comments