-
Recent Posts
Categories
Meta
Tag Archives: asp.net
Dynamic CSS files in ASP.net Master Page using C#
I have a reporting portal that serves up SSRS (SQL Server Reporting Services) reports to users. The users are from different organisations, indicated by a user group. I needed to have the front end personalised for each different organisation. The … Continue reading
Posted in Programming
Tagged asp.net, c#, css, dynamic, master page, programming, web
Leave a comment
Parametrised SQL Server Stored Proc From ASP.net / C# / OLEDB
Lets assume that we have a stored procedure that is defined in the following way, it doesn’t really matter what the actual body of the SQL is: We want to be able to call this procedure from an ASP.net page … Continue reading
Posted in Programming
Tagged asp.net, c sharp, c#, oledb, parameters, programming, sql, sql server, stored procedure, tsql
Leave a comment
Populating ASP.net DropDownList from SQL Server using OLEDB and DataTable
Firstly we need to ensure that we have referenced System.Data.OleDb in order to connect to the Database. Now the database connection: NB: for connection string help / information this is a great resource http://www.connectionstrings.com/ Now we have our open database … Continue reading
Posted in Programming
Tagged asp.net, c sharp, c#, datatable, dropdownlist, oledb, programming, sql, sql server
Leave a comment