1
vote
1answer
20 views
File Name in ASP.NET Response Buffer
When doing something like this:
Response.Clear();
Response.OutputStream.Write(buffer, 0, buffer.Length);
Response.ContentType = "audio/mpeg";
Response.Flush();
The downloaded f …
1
vote
5answers
35 views
how to create a parser for search queries
for example i'd need to create something like google search query parser to parse such expressions as:
flying hiking or swiming
-"walking in boots " author:hamish author:reid …
-4
votes
0answers
43 views
Canlender for appointments in asp.net [closed]
I need a scheduler for appointments just like a calender in outlook express 2003 that add appointment by right clicking and so on.
0
votes
1answer
29 views
asp.net scheduler for appointments
I want a appointment scheduler which consists of four time slots in 1 hour and clicking each slot, a popup externder opens so that we can add appointments in that specific slot and …
0
votes
1answer
30 views
Can ASP.Net MVC routing account for a “OR” option?
I have this routing setup at the moment
routes.MapRoute(
"OldPages", // Route name
"page{id}.html", // URL with parameters
…
0
votes
2answers
55 views
Why does hitting enter key in the textbox in firefox browser set Page.IsPostback value as true?
Hi,
I've an aspx page which has got a textbox and a submit button.Entering data in the textbox and hitting the button shows a listview control which displays data retrived from th …
1
vote
3answers
21 views
Considerations for changing a page’s URL in a CMS
I have written a CMS for a website. You can create pages and do all things you would expect but I am just wanting your opinions on what to do if a user changes the URL of a page. …
0
votes
3answers
25 views
how to developed a mvc project in VS 2010 beta 2 ultimate
in my vs 2010 beta 2 how i can developed a mvc project. i not see any where to developed a mvc project in vs 2010 beta 2
0
votes
4answers
24 views
How to open a Popup Window with fixed size using HREF tag?
I have a link like this
$contact_url="<a href=rentals_popup.php?id=$row->rentals_id >" . "Contact" . "</a>";
I want to open that page in a different window with
…
0
votes
0answers
13 views
Correct Controller code for a 301 Redirect
I am designing a new dynamic site from a static site. I have the route all sorted but I have a question on my Action method.
Below is the code but when testing and looking at the …
1
vote
2answers
23 views
cache problem in asp.net with c#
hi,
I am using the fileuplaod control to upload the images. For this I used to stored it in the cache
for 2 hours in byte format and show this image using the HttpContext in the …
0
votes
3answers
21 views
Chat Application in ASP.NET
I've to write an Ajax chat web application in ASP.NET for a friend, and I've a question: if client1 sends a message to client2, how should the application send the message to clien …
1
vote
6answers
29 views
Slow ASP.NET app load times - Can I track/trace/time the whole load cycle?
Hey all.
The ASP.NET web app project I'm currently working on is getting slower over time to re-load (In IIS or the .NET dev server). Currently it takes:
1:28 minutes to load vi …
0
votes
3answers
27 views
how to clear an label value in javascript
hi,
I have an label "test" comimg from .cs [c# code] text="data saved successfully" . but once I click the save button i need to clear its text
right now I ha …
1
vote
1answer
18 views
How can I write webparts that are as lightweight as the one by Google or Yahoo
Hi,
I have been writing webparts for a while and have written couple of portals too but I feel that the portal pages and webparts that I write using .net framework are much more he …
