2
votes
2answers
35 views
Is memory management a concern with asp.net mvc
Hai guys,
I want to know,is memory management a concern with asp.net mvc..
comparision of memeory management in
both asp.net mvc and web forms by experts
0
votes
2answers
31 views
asp.net-mvc and webforms co-existing
I know I've asked this question before, and I know there are plenty of resources out there describing the technique but I cannot for the life of me work it out.
I began by creating a simple WebForms …
0
votes
2answers
22 views
Dynamically Size Silverlight Control on Webpage
Here is the issue...
I am adding some silverlight 3 controls to an ASP.Net Web Forms application. The silverlight application's height can change based on the amount of data in it. The application is …
0
votes
4answers
28 views
ASP.NET (webforms) control for handling name-value data
I have an ASP.NET webforms site that is used mainly for managing data. One of the tables basically has name/value (string/string) data (no type information, just strings).
I want to make a page that …
1
vote
7answers
101 views
Is JQuery more suited to ASP.NET MVC than WebForms or it doesn’t matter?
Is JQuery more suited to MVC than WebForms or it doesn't matter?
I am planning to use JQuery heavily.
1
vote
3answers
45 views
How to show the content of the form just entered in the “:confirm =>” option on Ruby on Rails
I am trying to have a way of confirming the information entered before actually saving it to the DB
Considered making an individual confirmation page as discussed here
…
0
votes
2answers
39 views
ASP.NET Response Content
I have tested this in IIS 6.1, IE 7, ASP.NET 3.5 SP1.
I have a file download in a method in my aspx codebehind:
Response.ContentType = contentType;
Response.AppendHeader("Content-Disposition", …
0
votes
3answers
63 views
jQuery .val() not updating on submit.
I have the following values from a form being accessed by jQuery using .val():
var un0 = $("input.e0").val();
var un1 = $("input.e1").val();
var un2 = $("input.e2").val();
var un3 = …
0
votes
1answer
30 views
How Do I Loop Through An Excel Spreadsheet With VBA, Paste A Value To A Website Form Then Extract The Result Back?
I am trying to loop through a list of names in an Excel spreadsheet using VBA and I would like to paste a surname into a text box on a webpage and then extract the returned phone number into a cell …
0
votes
3answers
75 views
Possible to set TextBox text declaratively?
I am trying to set a TextBox control's Text property to the value of a variable declaratively. The only way I have found that will set the text property is if I place it in the code-behind page, which …
0
votes
0answers
26 views
Binding a DropDownList in an editable GridView
I thought I'd save myself some time by throwing down a GridView in an admin tool I was working on. This particular page is for editing Categories that “widgets” can then be assigned to. For …
4
votes
4answers
42 views
Making CAPTCHA accessible to people with disabilities. What approaches have you used?
Hi Guys
I'm nearing the completion of migrating our existing website to a CMS and I've just finished creating all the various contact forms. The CMS I'm using has CAPTCHA built into it's form …
0
votes
1answer
18 views
Why clear controls in CreateChildControls
All of the examples of ASP.NET composite controls always clear child controls as the first action within CreateChildControls. Why is this? As I understand it this method is always called via …
0
votes
1answer
23 views
How can I change child controls in a composite server control on postback
I have an ASP.NET web form composite control, let's call it control A, which contains a child composite control, which I'll call control B. The child controls of control B are dependent on a property …
0
votes
3answers
49 views
how to write text and an image to a Response.OutputStream in ASP.NET
I'm drawing an image and outputing it to web page using the following code:
Bitmap image = new Bitmap(350, 350);
Graphics g = Graphics.FromImage(image);
// code using g to draw image here
…
