active questions tagged webforms - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T18:35:07Zhttp://stackoverflow.com/feeds/tag/webformshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829106/asp-net-control-property-with-flags-enum4ASP.NET control property with [Flags] enumChris2009-12-01T21:37:38Z2009-12-01T22:04:35Z
<p>I have developed an ASP.NET control for which one of the properties is a [Flags] enum. However, I don't seem to be able to specify multiple flags for this property in the ASP.NET control markup. Is there a special syntax to do this or is it just not possible?</p>
http://stackoverflow.com/questions/1828098/how-to-elegantly-handle-returnurl-when-using-urlrewrite-in-asp-net-2-0-webforms2How to elegantly handle ReturnUrl when using UrlRewrite in ASP.NET 2.0 WebFormsBrian Kim2009-12-01T18:49:45Z2009-12-01T19:37:03Z
<p>I have a folder with multiple .aspx pages that I want to restrict access to. I have added web.config to that folder with <code><deny users="?"/></code>. </p>
<p>The problem is that ReturnUrl is auto-generated with physical path to the .aspx file while I'm using UrlRewrite. </p>
<p>Is there a way to manipulate ReturnUrl without doing manual authentication check and redirection? Is there a way to set ReturnUrl from code-behind or from web.config?</p>
<p>EDIT: The application is using ASP.NET 2.0 WebForms. I cannot use 3.5 routing.</p>
http://stackoverflow.com/questions/1524373/find-which-control-submitted-the-form-in-javascript0find which control submitted the form in javascriptPankaj Kumar2009-10-06T08:49:35Z2009-12-01T14:00:04Z
<p>HI guys,</p>
<p>is there any way to find which control is submitting the form through JavaScript??</p>
<p>also if one defined a JavaScript function to be called on the form submit event is there a way to find the control which caused the submission</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/1824757/infragistics-ultrawebgrid-breaks-formview-command-postback0Infragistics UltraWebGrid breaks FormView command postbackSandor Drieënhuizen2009-12-01T08:28:35Z2009-12-01T10:33:13Z
<p>In my ASP.NET application, I've got a page containing both an Infragistics UltraWebGrid control and an asp:FormView. I was experiencing trouble making the form view handle updating. The form view is bound to a data source control and there's a button with CommandName="Update" in it. Unfortunately none of the appropriate events are raised on the form view when I click the button.</p>
<p>I was surprised to find that when removing the grid, it suddenly worked. So, I reckon the grid is somehow inhibiting the formview to handle postbacks properly. There's no special trickery on my page by the way.</p>
<p>Has anyone experienced this problem and perhaps found a solution?</p>
http://stackoverflow.com/questions/602117/how-to-fix-asp-net-error-the-file-nnn-aspx-has-not-been-pre-compiled-and-cann2How to fix ASP.NET error "The file 'nnn.aspx' has not been pre-compiled, and cannot be requested."?jonsb2009-03-02T12:21:34Z2009-12-01T03:07:11Z
<p>I have a VS 2005 web site that I publish using "Publish Web Site", and I clear all the three checkboxes. I also have a deployment project that picks up the published files and creates an MSI. I then install the package on a separate test server.</p>
<p>In other words, the whole site is pre-compiled. However, when I go to any .aspx file in a specific subfolder named "Services", I get an HttpException:</p>
<blockquote>
<p>System.Web.HttpException: The file '/myapp/Services/mypage.aspx' has not been pre-compiled, and cannot be requested.</p>
</blockquote>
<p>If I go to an .aspx file in an other folder, be it the root or other subfolder, it works properly.</p>
<p>The contents of mypage.aspx itself is: <code><%@ Page Language="C#" AutoEventWireup="true" CodeFile="mypage.aspx.cs" Inherits="Services_mypage" %>"</code></p>
<p>In the <code>/myapp/bin</code> folder I can see a <code>mypage.aspx.989dc2fb.compiled</code> file. The content of this seems to point to a certain assembly that is also present in the bin folder.</p>
<p>Why is this error occurring? The .compiled file is there, and the assembly is there, and the type in question is present in that assembly (I can see it in Object Browser). Is it something about the name or the content of the .compiled file? Do I have the wrong version somehow? What does the seemingly random number in the .compiled filename mean and is it important?</p>
<p>I also want to mention that this issue appeared suddenly, and I'm not sure what changes there can have been done since it worked properly a few days ago (but to the best of my knowledge, none).</p>
http://stackoverflow.com/questions/1817335/tabular-data-in-asp-net-webform0tabular data in asp.net webformfieldingmellish2009-11-30T00:44:25Z2009-11-30T00:49:55Z
<p>I have an arraylist which I'd like to display in a tabular fashion, but instead of one item per row, I'd like to do it like this: </p>
<p><hr></p>
<h2>item1 | item 2 | item 3 | item 4|</h2>
<h2>item 5 | etc.</h2>
<p>Is there a control for this to which I can easily bind my data, or will I need to build the HTML out dynamically like I would have done in classic asp? </p>
<p>I know the best answer is probably 'MVC' but humor me. </p>
http://stackoverflow.com/questions/1814148/asp-net-display-images-and-pdf-in-a-gridview2ASP.NET - Display Images and pdf in a GridViewAlexander Corotchi2009-11-28T23:40:26Z2009-11-29T05:29:41Z
<p>I want to display in an asp:GridView an "Images" column. The idea is to provide a thumbnails of the image with link to real size image. For some rows, this may alternatively be a PDF document. I'd like the link to be to the PDF. The PDF or image are stored in a SQL database. </p>
<p>Now I have error in Handler (.ashx) file:</p>
<blockquote>
<p>"Invalid attempt to read when no data is present."</p>
</blockquote>
<p>This is my code :</p>
<p><strong>ASP:</strong></p>
<pre><code><asp:GridView ID="GridView1" runat="server"
AutoGenerateColumns="False" DataKeyNames="ID"
DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="assessment_id" HeaderText="assessment_id"
InsertVisible="False" ReadOnly="True"
SortExpression="assessment_id" />
<asp:BoundField DataField="a_mime" HeaderText="a_mime" SortExpression="a_mime" />
<asp:TemplateField HeaderText="a_data">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# "Handler.ashx?ID=" + Eval("ID")%>'/>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:testConnectionString %>"
SelectCommand="SELECT [assessment_id], [a_data], [a_mime] FROM [Assessments]">
</asp:SqlDataSource>
</code></pre>
<p><strong>The Handler ASHX:</strong></p>
<pre><code><%@ WebHandler Language="C#" Class="Handler" %>
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context)
{
SqlConnection con = new SqlConnection();
con.ConnectionString = ConfigurationManager.ConnectionStrings["testConnectionString"].ConnectionString;
// Create SQL Command
SqlCommand cmd = new SqlCommand();
cmd.CommandText = "Select a_data from Assessments where assessment_id =@ID";
cmd.CommandType = System.Data.CommandType.Text;
cmd.Connection = con;
SqlParameter ImageID = new SqlParameter("@ID", System.Data.SqlDbType.Int);
ImageID.Value = Convert.ToInt32(context.Request.QueryString["assessment_id"]);
cmd.Parameters.Add(ImageID);
con.Open();
SqlDataReader dReader = cmd.ExecuteReader();
dReader.Read();
context.Response.BinaryWrite((byte[])dReader["a_data"]);
dReader.Close();
con.Close();
}
</code></pre>
<p>If it is possible, please help me. If it's time-consuming, please provide a link to an example or blog post.</p>
http://stackoverflow.com/questions/1810136/sending-information-from-one-webform-to-another0Sending information from one webform to anotherMarceloRamires2009-11-27T18:34:45Z2009-11-27T20:04:32Z
<p>i'm generating HyperLinks, all of them (depending on the circunstance, could be 1, 2 or 1000) send to the same webform:</p>
<p>from default.aspx
to envia.aspx</p>
<p>i can't use session, or anything i already know, because i can't create as many methods i want (that would not be good, due to possible large numbers)</p>
<p>example, there are three lines i print on demand:<br>
house [link]<br>
car [link]<br>
flower[link] </p>
<p>i want the three links to load the same aspx webform sending as a parameter a string with these lines.</p>
<p>i don't care if the answer is in vb.net or in c#, anything you could help it's ok (i'm using vb.net though)</p>
http://stackoverflow.com/questions/1810105/url-rewriting-and-get-forms-in-apache-php0URL rewriting and GET forms in Apache/PHPEnrico Detoma2009-11-27T18:25:20Z2009-11-27T18:40:55Z
<p>I enabled URL rewriting on my PHP site with Apache (<a href="http://example.com/index.php?param=12" rel="nofollow">http://example.com/index.php?param=12</a> becomes <a href="http://example.com/index/param/12" rel="nofollow">http://example.com/index/param/12</a>).</p>
<p>I have a few forms which are in GET instead of POST.</p>
<p>After subitting the form, the resulting URL is not rewritten.</p>
<p>Is it possibile to keep rewritten URLs after submitting a GET form?</p>
<p>UPDATE: I found this article on the topic <a href="http://matthewjamestaylor.com/blog/how-to-post-forms-to-clean-rewritten-urls" rel="nofollow">http://matthewjamestaylor.com/blog/how-to-post-forms-to-clean-rewritten-urls</a> but I really don't like the idea of redirecting to rewritten URL. Is there really no way to keep rewritten URLs without redirecting?</p>
<p>UPDATE 2: Here is an example of what I'm trying to do.
Let's say I have a simple form like this:</p>
<pre><code><form method="get" action="">
<fieldset>
<input type="text" name="q" />
<input type="submit" value="Search" />
</fieldset>
</form>
</code></pre>
<p>and let's say my url is <a href="http://example.com/index/param/12" rel="nofollow">http://example.com/index/param/12</a></p>
<p>After submitting the GET form, the url becomes <a href="http://example.com/index/param/12?q=my-input-text" rel="nofollow">http://example.com/index/param/12?q=my-input-text</a>, while I would like to get a rewritten url like <a href="http://example.com/index/param/12/q/my-input-text" rel="nofollow">http://example.com/index/param/12/q/my-input-text</a></p>
http://stackoverflow.com/questions/1100166/why-repeaters-in-asp-net10Why Repeaters in ASP.NET?marcgg2009-07-08T19:45:05Z2009-11-27T16:37:38Z
<p>I'm a Ruby on Rails / PHP guy, and my company got me to work with ASP.NET. It's not too bad, I'm glad to learn a new language but since I started working with this technology everyone is bothering me about Repeaters.</p>
<p>The thing is that I totally fail of seeing the point: what make using a repeater better than just displaying things in a loop? Am I going to programmers' hell for this?</p>
<p><strong>In rails I would do...</strong></p>
<p><em>controller</em></p>
<pre><code>@types= Type.find(:all)
</code></pre>
<p><em>view</em></p>
<pre><code> <%@types.each do |t| %>
<%= t.name %> <%= link_to "view", t%>
<%end%>
</code></pre>
<p><strong>In ASP.NET I'd do:</strong></p>
<p><em>controller class attributes</em></p>
<pre><code>protected List<Type> _types = null;
</code></pre>
<p><em>controller class PageLoad</em></p>
<pre><code>_types = MethodThatGetTypeFromDB();
</code></pre>
<p><em>view</em></p>
<pre><code><% foreach (var tin _types){%>
<%= t.name %>
<%}%>
</code></pre>
<p>There are no repeaters, but the code is clean, DRY and respects the MVC AP. I don't create methods everywhere to handle <code>ItemDataBound</code> or whatever. So what's the idea here? Am I the only one that find that repeaters are a pain to set up and are not worth it compared to the advantages they bring?</p>
<p>I think I'm just not getting the idea here. </p>
<p>I'm <strong>not</strong> trying to start a battle rails vs the world, it's just that this is what I know the best so this is the paradigm I'm trying to find when I'm developing. I think it's more convenient and I'm used to it, but if someone goes "Repeaters are good because A, B and C, doing what you're doing is terrible because D, E and F", then I'll admit it and change my approach.</p>
http://stackoverflow.com/questions/1808381/several-simple-select-boxes-to-replace-a-multiple-select-box-in-html0Several simple select boxes to replace a multiple select box in HTMLprobad_2009-11-27T12:07:52Z2009-11-27T12:22:15Z
<p>I'd like to replace a multiple select box like: </p>
<pre><code><select multiple="multiple" name="options">
<option value="option1">option1</option>
<option value="option2">option2</option>
...
</select>
</code></pre>
<p>with an arbitrary number of simple select boxes: </p>
<pre><code><select name="options1">
<option value="option1">option1</option>
<option value="option2">option2</option>
...
</select>
<select name="options2">
<option value="option1">option1</option>
<option value="option2">option2</option>
...
</select>
</code></pre>
<p>Is there any way to send and retrieve via POST an array of select boxes or should I try to access every select box named options(number) until it fails? Seems a bit dirty.</p>
<p>I should be able to submit an action to "delete this select box" or "create new select box" so I need some way to distinguish the select boxes.</p>
http://stackoverflow.com/questions/1804801/what-is-the-difference-between-the-clearing-and-reseting-a-web-form1What is the difference between the clearing and reseting a web form?Sikender2009-11-26T17:04:06Z2009-11-26T18:37:18Z
<p>I want to reset the value of a web page using JavaScript reset function. Which operation is the JavaScript performing first: the reset or a clear? And what is the difference in between the two?</p>
<p>Also, how can I retrieve a value using reset function?</p>
http://stackoverflow.com/questions/1798478/any-suggestion-for-3rd-parties-net-web-form-generator-builder0Any suggestion for 3rd parties .NET web form generator/buildernemke2009-11-25T17:16:28Z2009-11-26T08:05:07Z
<p>Do you have any suggestion for a product/solution that allow clients to create web forms online?</p>
<p>This is the scenario:
Superuser creates web forms and publish them for further usage (for other users of the site).</p>
<p>I need asp.net or asp.net MVC. It would be good if it is possible to buy licence with source code, so I can customize and adapt the solution. I need to import this project in my .NET solution.
Any help is appreciated.</p>
<p>Edit: I want to allow clients of web site, to be able to create their own web forms.
Thay would be some kind of superusers or admin users.
Clients have no tech knowledge. Do you have any good experience with this? Or do I need do code this from the scratch?
Info Path is great tool, but it's only desktop app.It doesn't work with web.</p>
<p>Some .Net solutions like this <a href="http://wufoo.com/" rel="nofollow">http://wufoo.com/</a></p>
<p>Another great Product is this <a href="http://www.frevvo.com/frevvo/web/static/home" rel="nofollow">http://www.frevvo.com/frevvo/web/static/home</a></p>
http://stackoverflow.com/questions/1801919/easy-way-to-upload-a-screenshot-from-clipboard-through-a-browser-form1Easy way to upload a screenshot (from clipboard) through a browser formAlphaOne2009-11-26T06:40:36Z2009-11-26T06:49:21Z
<p>Hi,</p>
<p>i am pretty sure, that i've seen such a feature on a website somewhere in the web.</p>
<p>i want to give the user a form, where he can input some data and attach the current clipboard content (very likely a screenshot) to the form and then submit it as an image file.</p>
<p>after all, i don't want the user to go through all the hassle: take a screenshot, open his favorite image processing app, paste the screenshot, save it as a file, then go to my form to click a browse button and eventually search for the saved file.</p>
<p>there has to be an easier method, with all the ajax-jquery-web2.0-stuff.</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/712220/whats-your-choice-for-your-next-asp-net-project-webforms-or-mvc15What's your choice for your next Asp.Net project: WebForms or MVC?Click Ok2009-04-03T01:10:44Z2009-11-25T22:21:46Z
<p>Let's say that you will start a new Asp.Net web site/application tomorrow. What your choice between WebForms and MVC, and why?</p>
http://stackoverflow.com/questions/1791741/iis-7-asp-net-webforms-application-on-multi-processor-server-getting-confused-c0IIS 7/ASP.NET WebForms application on Multi Processor server getting confused? Column '{dataColumn}' does not belong to table {dataTable}proudgeekdad2009-11-24T17:46:44Z2009-11-25T18:14:29Z
<p>We have been working on our application for about a year now and today we performed a manual stress test with about 70 users. Our SQL server and WinForms application ran smooth, however, once the web application hit around 20 users, the server started acting strange. </p>
<p>One error that we received multiple times was when a stored procedure executed and loaded a DataTable, it would report "Column '{dataColumn}' does not belong to table {dataTable}". The odd thing was that after you received the error, you could refresh the page and the error would go away and the page would work correctly.</p>
<p>One of our questions is would this be caused by having IIS running on a multi processor server? If so, is there a server setting or a code modification that can resolve this error?</p>
http://stackoverflow.com/questions/106509/disable-button-on-form-submission7Disable button on form submissionBrownie2008-09-20T00:09:30Z2009-11-25T07:35:54Z
<p>I have a button that I would like to disable when the form submits to prevent the user submitting multiple times.</p>
<p>I have tried naively disabling the button with javascript onclick but then if a client side validation that fails the button remains disabled.</p>
<p>How do I disable the button when the form successfully submits not just when the user clicks?</p>
<p>This is an ASP.NET form so I would like to hook in nicely with the asp.net ajax page lifecycle if possible.</p>
http://stackoverflow.com/questions/1753216/mvp-pattern-interfaces-error-message-display-in-webform0MVP Pattern, Interfaces, Error Message Display in webformparminder2009-11-18T02:23:03Z2009-11-24T18:28:13Z
<p>Hi Experts,</p>
<p>I am working on a webform project, where I want to implement MVP Pattern.
I have gone through few articles and project based on MVP. It seems fine to me. </p>
<p>At most of the places, If there is any need to display error message, it has been made
a method in the view interface. I am giving an example here for clarity.</p>
<p>public interface IAdminSettingsView
{
string Name { get; set; }
string Password { get; set; }
string Email { get; set; }
void ShowErrorMessage(string errorMessage);
}</p>
<p>here is my control implementing IAdminSettingsView</p>
<p>public partial class AdminSettingsEdit : BaseControl, IAdminSettingsView
{</p>
<pre><code> private AdminSettingsPresenter _adminSettingsPresenter;
protected void Page_Load(object sender, EventArgs e)
{
}
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
_adminSettingsPresenter = new AdminSettingsPresenter(this);
}
protected void BtnSave_Click(object sender, EventArgs e)
{
_adminSettingsPresenter.Save();
}
#region Implementation of IAdminSettingsView
public string Name
{
get { return AdminName.Text; }
set { AdminName.Text = value; }
}
public string Password
{
get { return AdminPassword.Text; }
set { AdminPassword.Text = value; }
}
public string Email
{
get { return AdminEmail.Text; }
set { AdminEmail.Text = value; }
}
public void ShowErrorMessage(string errorMessage)
{
lblErrorMessage.Text = errorMessage;
}
#endregion
}
</code></pre>
<p>here is my presenter</p>
<pre><code>public class AdminSettingsPresenter
{
public AdminSettingsPresenter(IAdminSettingsView view)
{
_view = view;
}
private IAdminSettingsView _view;
public void Save()
{
try
{
//Trying Save Data Here
}
catch (Exception exception )
{
_view.ShowErrorMessage("Couldnt Save Data");
}
}
}
</code></pre>
<p>My question is, how can I seperate Error Related messages into a different Interface and then make a communication between them. for example if I have an interface </p>
<p>interface IShowErrorMessage
{
//somemethod here</p>
<p>}</p>
<p>how to use this interface to work with my main IAdminSettingsView interface. </p>
<p>Your help will be appreciated. If there is any better solution to this problem, I would love to hear. </p>
<p>Regards
Parminder</p>
http://stackoverflow.com/questions/1789290/drag-drop-mysql-web-form-builder0drag drop mysql web form buildershafi2009-11-24T10:50:45Z2009-11-24T11:07:17Z
<p>Hi,</p>
<p>I would like to have a tool with which I can easily develop(dragNdrop) front-end for mysql table and publish it to web. I am not sure whether I can try oracle forms, as my database is MySQL. Even if I can use Oracle forms to connect to MySQL, I would like to know any other third party tool which can do the job easily & quickly.</p>
<p>Thanks & Regards
`Shafi</p>
http://stackoverflow.com/questions/1788454/web-form-design-multiple-pages-vs-single-page-with-ajax0Web form design - multiple pages vs single page with AJAXspooner2009-11-24T07:33:30Z2009-11-24T09:04:06Z
<p>We are designing a data capture process with many questions (using ASP.NET), which can repeat (e.g. enter all your vehicles). In rare cases this could be over 100 repeating groups. </p>
<p>Therefore I've stated that rather than having one huge form that we split the application into multiple forms, using logical points for page splits (e.g. personal details) in a wizard style.</p>
<p>However, there is debate within the team as to whether we should be using AJAX/Javascript to have a single form. Suggested approaches to this appear to be:</p>
<ol>
<li>Load in all the steps in one go, and just use Javascript to toggle.</li>
<li>Load in step 1 and load the other steps using AJAX.</li>
<li>Submit the form using AJAX and load the next step using AJAX.</li>
</ol>
<p>Option 1 to me defeats the entire point, as you'd end up loading a massive HTML tree - some of the pages can be large. This would be more acceptable if there was a small number of steps with very few questions on each.</p>
<p>Option 2 to me seems overly complex, plus if the user clicks the next button, can you guarantee the next page has loaded? Also, what happens if input from page 1 is required for page 2?</p>
<p>Option 3 seems doable, but I'd have though the response time of doing the AJAX processing would actually be slower than doing a standard form submit, as there would be more processing involved by the client browser. Also this approach is more complex than a standard form submit.</p>
<p>Do you think my approach is correct (standard form posts)? I've read that typically AJAX is used to enhance the functionality of a page, rather than trying to emulate multiple pages.</p>
http://stackoverflow.com/questions/1775788/asp-net-dynamic-command-button-event-not-firing1ASP.NET dynamic Command Button event not firing stamp2009-11-21T15:34:12Z2009-11-23T20:47:12Z
<p>I'm trying to create Command Buttons dynamically, but clicking the button in question doesn't seem to raise the corresponding CommandButton_Click event. I noticed that in the examples on SO a property is set for Button.OnCommand as well as the CommandName and CommandArgument but it isn't an option in intellisense.</p>
<p>So the question is, what am I doing wrong here (code below without the OnCommand), is it accessed in some other way - if so, why do the examples I've found all show it as .OnCommand?</p>
<p><strong>EDIT:</strong> Further to help, I have added the handler however the event is still not firing. The buttons reside in an UpdatePanel and are rebuilt on every postback (along with the handler). I have created a simplified example of what I'm doing which is shown below If the button event fires, it writes "EVENT FIRED" to the txtTestFired Textbox - suffice to say I have never seen that. This is really driving me nuts, any help is very gratefully received.</p>
<p>.aspx file</p>
<pre><code><form id="frmMain" runat="server">
<asp:ScriptManager ID="scmAddProducts" runat="server">
</asp:ScriptManager>
<asp:updatepanel runat="server">
<ContentTemplate>
<asp:TextBox ID="txtProduct" runat="server"></asp:TextBox>
<br />
<asp:Button ID="btnAddItem" runat="server" Text="Add Line" />&nbsp;
<asp:TextBox ID="txtTestFired" runat="server"></asp:TextBox>
<br />
<br />
<asp:Panel ID="pnlAddedLines" runat="server"></asp:Panel>
</ContentTemplate>
</asp:updatepanel>
</form>
</code></pre>
<p>.aspx.vb file</p>
<pre><code>Protected Sub btnAddItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAddItem.Click
Dim dtItems As New System.Data.DataTable
If Session("Items") Is Nothing Then
Dim dcColumn As New System.Data.DataColumn
dcColumn.DataType = Type.GetType("System.String")
dcColumn.ColumnName = "Product"
dtItems.Columns.Add(dcColumn)
Session("Items") = dtItems
End If
dtItems = CType(Session("Items"), System.Data.DataTable)
Dim drRow As System.Data.DataRow
drRow = dtItems.NewRow()
drRow("Product") = txtProduct.Text
dtItems.Rows.Add(drRow)
Session("Items") = dtItems
txtProduct.Text = ""
End Sub
Protected Sub Page_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreRender
If Not Session("Items") Is Nothing Then
Dim dtItems As System.Data.DataTable = CType(Session("Items"), System.Data.DataTable)
Dim iItemIndex As Integer = 1
For Each drRow In dtItems.Rows
Dim btnClose As New Button
btnClose.ID = "btnClose" & iItemIndex
btnClose.CssClass = "formCloseButton"
btnClose.Text = "X"
AddHandler btnClose.Click, AddressOf Button_Clicked
pnlAddedLines.Controls.Add(btnClose)
btnClose = Nothing
Dim txtProduct = New TextBox
txtProduct.ID = "txtProduct" & iItemIndex
txtProduct.CssClass = "formText"
txtProduct.Text = drRow("Product")
txtProduct.Columns = "40"
pnlAddedLines.Controls.Add(txtProduct)
iItemIndex += 1
Dim litHR = New Literal
litHR.Text = "<hr />"
pnlAddedLines.Controls.Add(litHR)
litHR = Nothing
Next
End If
End Sub
Private Sub Button_Clicked(ByVal sender As Object, ByVal e As System.EventArgs)
txtTestFired.Text = "EVENT FIRED"
End Sub
</code></pre>
http://stackoverflow.com/questions/1782093/refactoring-a-legacy-webforms-app-to-better-separation-of-concerns0Refactoring a legacy WebForms app to better separation of concerns.rohancragg2009-11-23T09:43:27Z2009-11-23T17:27:46Z
<p>i.e. <em>Is MVP still the next best choice when MVC is not an option?</em></p>
<p>I thought I'd ask this here as I'm sure there are others like me who don't have the luxury of being on a green-field project and want to refactor a webforms UI to better separation of presentation from business objects...</p>
<p>I'm working on a legacy application tasked with adding relatively small additional requirements, enhancements, and bug fixes.</p>
<p>The part of the application I'm addressing here may be characterised as the UI for a set of CRUD operations over business objects that are persisted to a relational database.</p>
<p>The existing UI uses a MultiView control to navigate between the editing of associated business objects (one-one associations or one-many / parent-child). Yes, that's right - all on one page. Unfortunately there is very sparing use of UserControls so the markup and code-behind is hundreds of lines long.</p>
<p>On each View a FormView manages the CRUD over the business objects via various ObjectDataSources. Within the ItemTemplate of each FormView various server controls databind to fields or methods on an ObjectDataSource.</p>
<p>I'd like to introduce more separation of concerns and get some of the reams of code out of Page code-behind.</p>
<p>My research so far suggests to me that I might consider:</p>
<ol>
<li><p><a href="http://www.codeproject.com/KB/architecture/ModelViewPresenter.aspx" rel="nofollow">Use a flavour of Model View Presenter</a>; more specifically - <a href="http://codebetter.com/blogs/david.hayden/archive/2007/07/27/model-view-presenter-and-gridview-via-objectcontainerdatasource-control.aspx" rel="nofollow">use an ObjectContainerDataSource from the Web Client Software Factory</a> to make it easier to bridge between the current UI and a set of new Presenter classes.</p></li>
<li><p>Build again from scratch with an MVC framework (not an option).</p></li>
<li><p>Leave well alone; an MVP pattern is only justified if I need to re-use my Presentation in different UI scenarios? </p></li>
</ol>
<p>If I settle with (3) I'd still like to know how to start refactoring towards better separation of presentation.</p>
<p><em>What would you do?</em> any other ideas gratefully received...</p>
<p><hr></p>
<p>Here's some more background for anyone who's interested:</p>
<p>The domain is in pharmaceutical research but that's fairly irrelevant and you can think of it as pretty typical line-of-business - user configuration of a family of settings that form the operating conditions of another part of the application. </p>
<p>The business object layer has already been built in a very consistent manner. Although I may not like it, I can't neccesarily justify changing it. Each object is it's own Repository / Data Access Object in that there are static methods for 'get by ID' and 'get list by criterion'. Where possible common operations are implemented in an abstract base class. Each business object delegates the data access work to a Data Access Layer that makes use of ADO.NET 2.0 Provider Factory mechanisms to remain relatively abstracted from a concrete Provider. In this respect it shares a lot in common with any app that uses the Data Access Application Block from the Microsoft Enterprise Library.</p>
<p>There are fairly exhaustive integration tests written in NUnit that set up a test database from scratch so they take ages to run but at least they verify that stuff works as it should (at some point in the past anyway ;-). There is almost no true unit testing in place (yet).</p>
http://stackoverflow.com/questions/1780875/looking-for-a-replacement-for-nms-formmail-pl1Looking for a replacement for NMS FormMail.plPaul Tomblin2009-11-23T02:48:38Z2009-11-23T12:48:52Z
<p>I have a simple contact form that I knocked up in a few minutes using <a href="http://nms-cgi.sourceforge.net/scripts.shtml" rel="nofollow">NMS FormMail.pl</a>. But the customer has requested that I have a second email address entry field, and validation that kicks them back if the two addresses are different. I could add the validation to FormMail.pl, but before I do, I thought I'd ask if there is a better solution, if only because this might already be a solved problem, and also because nobody has modified FormMail.pl in 4+ years.</p>
<p>I know this server has perl and PHP, and maybe Python as well. I've also got Tomcat running, but a servlet seems like overkill for this.</p>
http://stackoverflow.com/questions/1781132/problem-with-if-statement-in-ruby-on-rails0problem with if statement in Ruby on railsErika2009-11-23T04:41:36Z2009-11-23T05:40:56Z
<p>I know this is probably rather trivial but i have had a lookt at previous questions and i've tried them but they still issued an error unfortunately :s</p>
<p>My issue is the following, i have an html.erb file and i want a certain body text to be display given a condition or another if it is false</p>
<p>i have </p>
<p><code><% if !@selector.nil do %></code></p>
<p>more code goes here</p>
<p><code><% end %></code></p>
<p>I have tried many combinations but the most frequent error i keep getting is </p>
<p><code>You have a nil object when you didn't expect it!
The error occurred while evaluating nil.nil</code></p>
<p>I'm not sure what i'm doing wrong, this is most likely something very easy but i cant find my way through it! :s Any assistance would be really appreciated, thanks in advanced</p>
http://stackoverflow.com/questions/1771893/dynamic-creation-of-asp-net-form-elements1Dynamic creation of ASP.NET Form Elementsstamp2009-11-20T17:05:44Z2009-11-20T19:31:12Z
<p>I'm trying to build a form which generates itself as it is used. I have created a really simplistic example, loosely related to what I'm trying to do below, but which demonstrates the problem. </p>
<p>The user types a word in the text box, clicks the Button and a new TextBox is loaded into a Panel, with the value in the original TextBox that the user has entered. The user should then be able to type something else/the same and create another text box with that in it by clicking the button, basically permitting 0,1,..,n textboxes appearing above the "txtFeeder" TextBox on the form. </p>
<p>The problem is that everytime you click the button, it doesn't add a new control, it seems to just update the one that has already been created with the new (incremental) ID. I'm not sure if I'm doing something wrong, or if what I'm trying to do can't be done (which I find hard to believe)?</p>
<p>Here's the .aspx...</p>
<pre><code><form id="frmMain" runat="server">
<asp:Panel ID="pnlAdded" runat="server"></asp:Panel>
<asp:TextBox ID="txtFeeder" runat="server"></asp:TextBox>
<asp:Button ID="btnFeedPanel" runat="server" Text="Button" />
</form>
</code></pre>
<p>...and here's the .aspx.vb...</p>
<pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
ViewState.Add("elementCount", 0)
End If
End Sub
Protected Sub btnFeedPanel_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnFeedPanel.Click
ViewState("elementCount") += 1
Dim txtNew = New TextBox
txtNew.ID = "txtElement" & ViewState("elementCount")
txtNew.Text = txtFeeder.Text
pnlAdded.Controls.Add(txtNew)
txtNew = Nothing
End Sub
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1772177/would-it-be-possible-to-use-url-routing-for-the-following-purpose0Would it be possible to use URL routing for the following purpose?Dave2009-11-20T17:48:55Z2009-11-20T18:44:04Z
<p>I have a site that is being converted from classic asp to asp.net webforms. The old version of the website maintained to separate versions of the site, one for the US and one for Canada.</p>
<p>The US version sat at the root of the domain and the Canadian version sat inside a folder named "canada".</p>
<p>The new asp.net version of the application, it was decided that it wasn't necessary to maintain two different versions of the site and it has been merged into one site.</p>
<p>I was wondering however if I could take advantage of URL routing to flip anyone who attempts to access the site via a canadian subfolder they just use the regular site, just that their culture gets set to "en-CA".</p>
<p>In other words the old site was structured like:</p>
<pre><code>http://www.domain.com/ <-- US site
http://www.domain.com/canada <-- Canadian site
</code></pre>
<p>The new site will just be at the root domain and the session's culture will be set.</p>
<pre><code>http://www.domain.com/ [Session("Culture") = "en-US"] <-- US site
http://www.domain.com/ [Session("Culture") = "en-CA"] <-- Canadian site
</code></pre>
<p>I would like to if someone accesses the site via the canada subfolder, I would like to maintain that canada subfolder in the URL but not actually have a physical copy of the website at that folder.</p>
http://stackoverflow.com/questions/1754493/move-items-betweem-list-boxes-in-c0Move items betweem list boxes in c#Sakthivel2009-11-18T08:39:17Z2009-11-20T13:14:13Z
<p>Hi friends,
I developed a webpage in which I used the following code to move the selected items between two list boxes. </p>
<p>It is very slow. </p>
<p>Is there any optimization for this? Please help me to solve this issue.</p>
<pre><code>protected void MovetoNext_Click(object sender, EventArgs e)
{
try
{
for (int i = 0; i < lstCategory.Items.Count; i++)
{
if (lstCategory.Items[i].Selected)
{
lstCategory.Items[i].Selected = false;
lstSelCategory.Items.Add(lstCategory.Items[i]);
lstCategory.Items.RemoveAt(i);
i = i - 1;
}
}
}
catch (Exception ex)
{
}
}
</code></pre>
http://stackoverflow.com/questions/1768000/how-can-i-remove-values-from-a-dropdown-so-they-are-not-there-on-page-submit0How can I remove values from a dropdown so they are not there on page submit?Kettenbach2009-11-20T02:46:43Z2009-11-20T03:14:52Z
<p>Hi All,</p>
<p>I have a textbox and a dropdown list on an aspx webform. The user would type in a number and then submit and the dropdown would be populated with values relevant to the typed word. If the user types a new term in the text box, I want to truncate the dropdown and when the user submits, it would submit only the text and no dropdown value (actually an empty string is ok). As the user navigates through the dropdown the page is updated with data relevant to the text and the dropdown value.
I am using the following jQuery </p>
<pre><code>function removeCoverageOptions() {
$("#ctl00_DefaultContent_txtClaimNumber").keypress(
function() {
$("#ctl00_DefaultContent_ddCovCert").find("option").remove();
}
);
</code></pre>
<p>}</p>
<p>I am running that on <code>$(function(){ removeCoverageOptions(); });</code></p>
<p>It does remove the option items in the UI, but when I submit the form and debug... in page load <code> var claimNum = txtClaimNumber.Text;
var certSeq = ddCovCert.SelectedValue;</code></p>
<p>claimNum is the correct newly typed text, but certSeq still has "999", the last selected value. Any ideas on how I can correct this. When I change claimNum, I intend certSeq to be an empty string. Is it maybe a viewstate issue?</p>
<p>Thanks,
~ck in San Diego</p>
http://stackoverflow.com/questions/1767050/asp-net-webforms-ihttpmodule-singleton0ASP.NET Webforms IHttpModule Singletonblu2009-11-19T22:32:52Z2009-11-19T22:55:38Z
<p>I have a class that implements IHttpModule in a separate assembly from a website. The module implementation intercepts requests and rewrites urls for the website. </p>
<p>The mappings are stored in a class with the requested url and the destination url. </p>
<p>Is the second example, MTSingleton, from <a href="http://devhood.com/Tutorials/tutorial%5Fdetails.aspx?tutorial%5Fid=486" rel="nofollow">http://devhood.com/Tutorials/tutorial_details.aspx?tutorial_id=486</a> suitable for creating the mapping list? Is there a better approach from within the module implementation?</p>
<p>Edit: My bad, this is for IIS 6.0 and .NET 3.5 SP1</p>
http://stackoverflow.com/questions/1737066/ie7-onsubmit-return-false-in-function-may-fail0IE7 onSubmit return false in function may fail?bobo2009-11-15T09:21:56Z2009-11-19T17:22:30Z
<p>I found this <a href="http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/9197645d-47cc-48bc-a84e-c517a590815c" rel="nofollow">forum thread</a> in google, but no one here seems to encounter the same problem, so I would like to know if onsubmit='return false;' really fails in some IE7 browsers, meaning that it has become an unreliable method of preventing direct post back in an ajax form since the release of IE7, so we need to be very careful about using it?</p>