Click here to Skip to main content
15,888,286 members

Comments by an0ther1 (Top 200 by date)

an0ther1 1-Oct-19 21:45pm View    
The name of the machine that IIS is running on
an0ther1 2-Jan-19 17:26pm View    
That depends on the technology you are using - ASP versus MVC.
You are probably better off raising a new question that commenting here

Kind Regards
an0ther1 2-Oct-18 1:39am View    
Local Temp tables are only available for the connection they were created for. Once the connection is disconnected, the table is automatically deleted.
If you use SSMS & debug, step through, your stored procedure you can use the object explorer to view the table. But the name is not exactly as you have specified.
The table will be named #<tablename>______<sessionid>
This ensures that 2 users can create & access the same Temp table at once.

Kind Regards
an0ther1 10-Jul-18 17:40pm View    
Sorry but I cannot tell you what the exact solution is because I cannot see your screen or access your computer.
The code you provided should save to a Setting named FileList unless it is an Application setting or the Setting is never initialised - read the documentation in the provided link & debug your code to determine which problem you have

Kind Regards
an0ther1 20-Jun-18 21:46pm View    
So where are you stuck? Using a datatable for the report source is covered in multiple tutorials, you app should retrieve the data as a dataset/datatable and pass to the report.
Populating Report parameters is the second part, these can be populated from code using Report.SetParameterValue(parametername, parametervalue).
use the Improve Question widget to update with where you are experiencing a problem.

Kind Regards