Search Results

0
votes
7answers
729 views

What’s the best way to handle long running process in an ASP.Net application?

In my web application there is a process that queries data from all over the web, filters it, and saves it to the database. As you can imagine this process takes some time. My current solution is t …
1
vote
1answer
81 views

How do you store themes in the database?

I know how to load themes dynamically when they are stored locally. Is it possible to store theses themes in the database yet still apply them programmatically as described in referenced MSDN artic …
6
votes
8answers
2k views

Change Theme / CSS based on user

I am building a product that we are eventually going to white-label. Right now I am trying to figure out the best way to facilitate these requirements programmatically so the user can update the ba …
1
vote
2answers
603 views

Use HTTPWebRequest to get remote page’s title

I have a web service that acts as an interface between a farm of websites and some analytics software. Part of the analytics tracking requires harvesting the page title. Rather than passing it from …
1
vote

Change Theme / CSS based on user

I like the idea of using dynamic CSS using an ASP.Net Handler... <link rel="stylesheet" href="style.ashx" /> style.ashx < …
1
vote

Using the same asp panel in multiple tabs

Make the panel a user control and then drop the user control in each tab panel. <TabContainer> <tabPanel1> <contentTemplate> <uc1:MyControl id="myCo …
1
vote

Best asp.net based dynamic forms engine?

Try the ASP.Net dynamic data framework …
1
vote

Way to tell if an app is ASP.NET 1.1 or ASP.NET 2.0

You can do this through your browser - just look in the response headers for "X-AspNet-Version" In FireFox you can do this with the web developer toolbar... -> Information -> View Respons …
-1
votes

How to Show/Hide Panels before executing Response.Redirect

if (success) { lblSuccessMessage.Text = _successMessage; showMessage(true); } …
0
votes

Tracking down intermittent ‘Object reference not set to an instance of an object.’ error on build

Check the Application Log of your Event Viewer - It should tell you where the exception is being thrown. …
1
vote

How to have a different theme/css load up depending on domain name

See this thread -> http://stackoverflow.com/questions/178863/change-theme-css-based-on-user …
0
votes

How can I provide dynamic CSS styles or custom theme for web site?

See this thread -> http://stackoverflow.com/questions/178863/change-theme-css-based-on-user …
-2
votes

Is there a way to data bind a single item without eg. a Repeater control?

Use a literal control <div> <asp:Literal id="litContent" runat="server" /> </div> In your code: private void bind() { litCon …
-1
votes

Vertical display of Header Text in Grid View ASP .NET

set HeaderText = "C<br />O<br />L<br />" etc …
0
votes

Use HTTPWebRequest to get remote page’s title

So I would have to go with something like... HttpWebRequest req = (HttpWebRequest)WebRequest.Create(URL); HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); Stream st …