Search Results

0
votes
7answers
728 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
2answers
600 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
votes

How to Show/Hide Panels before executing Response.Redirect

if (success) { lblSuccessMessage.Text = _successMessage; showMessage(true); } …
-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 …