Tagged Questions
0
votes
1answer
65 views
Selecting Values in Html.ListBox Creation
I've been having trouble with this and haven't been able to find a way to solve my problem...
I have a select list that I want to allow users to select multiple of, and I'm using ASP.NET. After ...
0
votes
1answer
28 views
form action to email HTML form and redirect user to new URL in IIS 7.5? sendmail equivalent for .net?
I have a large HTML form which has approximately 60 fields with a lot of jQuery based conditional fields, validation, and a lot of CSS applies to UL and LI tags.
The goal is to email the form ...
0
votes
1answer
24 views
MVC3 JQuery validation not working in non-English locales
In my application, we have a page where we are able to edit a user's details. Some of this information is validated to ensure that some fields are required while others are not. When an invalid entry ...
0
votes
0answers
17 views
Change target attribute of form tag from iframe source page
I've a page, PopUp.aspx, that is opened in a new window. This page has a iframe whose src is set in code behind (as this would be used for various pages). In one example, the src is set to a login ...
0
votes
0answers
44 views
Response.Write with an iframe
I have inherited an application that uses Cybersource as the credit card processing company. It currently uses the CyberSource API and I am trying to convert it to use their hosted order page - ...
0
votes
1answer
25 views
How to redirect to login screen if not logged in for certain web pages
So I have a login.aspx and it is set up so that all forms redirect to the login page if you are not logged in. This site is suppose to be public, no login is required except if you are admin and want ...
0
votes
1answer
65 views
javascript google places works in html but not inside asp content
I am trying to use a javascript example using google places api to auto fill some address fields. It works as planned in html but if I am wanting to use it inside tags it does not work. I am not ...
0
votes
1answer
44 views
Multiple identical forms on a page in asp.net. How do I get variables?
I'm having trouble figuring this out. I can't explain it that well, so here some html/asp first:
<%for(int i=0; i<getCountRows(); i++)
{
setLabelsFestivals(i);
%>
<form ...
1
vote
0answers
44 views
Capture response of form post with input[type=“file”]
I have the following html code:
<form action="@Url.Action("SavePicture", "Pictures")" method="post" enctype="multipart/form-data" id="SavePictureForm" target="my_iframe">
...
-1
votes
2answers
44 views
Some assistance with ASP.NET form creation…
I have a list of forms in my Source Control.
ContentRequest.aspx
ContentRequest.aspx.cs
Default.aspx
Default.aspx.vb
I have to use some of these forms to create additional forms, using one of the ...
0
votes
2answers
43 views
Grabbing values of jquery generated html with c#
I am trying to grab the values of TextBoxs that I generate using JQuery. The TextBoxes get added to the page 3 at a time. Each 3 boxes represent an item.
Add creates another 3 boxes for size, ...
0
votes
4answers
57 views
ASP.NET adding a form to Master Page
So I've never really coded a website using ASP.NET. I'm trying to add a search form to a masterpage for my site. The problem is the whole body is wrapped in a form tag, which makes the functionality ...
1
vote
1answer
70 views
Clicking on Add Button , initializing a fieldset in vb.net
<Fieldset>
<asp:table runat="server">
<asp:TableRow runat="server">
<asp:TableCell runat="server">
<asp:DropDownList ...
0
votes
1answer
76 views
Building a data driven asp.net web forms application
I need to create an asp.net web forms application which is data driven using VS. The application needs to have a login screen, with customers and staff, with a product page where they can select a ...
1
vote
1answer
275 views
Jquery Ui tabs loads to page in asp.net
I am using a jquery Ui tabs in my application
In this i am loading three different tabs which has a asp form on each tab. We know that asp page must have only one form so i loaded those contents ...
0
votes
1answer
42 views
How to Hide/Show Form Fields on Add and Edit Item Pages via Jquery
I am creating an inventory application for an intranet. I used a Property Agent module & DotNetNuke application to prepare my form.
Because of many form fields; I want to hide most of the form ...
0
votes
0answers
116 views
Asp.net MVC 4 - Use TempData : view to controller for compare Model
i want use TempData for compare 2 addresses.
So, in View i give the address model and when i submit my form, i compare these addresses for make an action with a legacy background
in view :
@{
...
1
vote
1answer
63 views
advice on form for dynamic data entry into an html page
I have a project where I have to output some safety information on monitors. I have it working perfectly but the dates in it are dynamic and I need a form to make it easy for anyone to change the ...
0
votes
0answers
68 views
collecting data from a form using asp.net and inserting it into an sql view made up of multiple tables
I am trying to collect data from a form using asp.net and insert it into a sql view that is made up of multiple tables. however an error keeps being displayed saying 'v_orderdetails is not updatable ...
1
vote
2answers
275 views
Upload and Delete file by using File Upload Control asp.net
I am developing a complaint form. In this this form, I must make a function that uploads a file and then delete the file that was uploaded. I can upload a file to the server, but I can't take a link ...
0
votes
0answers
47 views
Control.Text to String, but keep HTML entities
I have a web form using CKEditor. CKEditor creates HTML content. On the client side, I escape < and > so the ASP.net validation feature does not interfere when submitting the text box to the ...
0
votes
1answer
57 views
Adding multiple nested items inside one form
I have one complex problem. I need to add multiple items inside one form in ASP.NET MVC4 Application. I have three models:
Movie:
public class Movie
{
[Key]
...
0
votes
1answer
35 views
Bind EventHandler for custom form controls
I am trying to bind an event to a form element created in a custom Form class. I am quite clueless as to how I can bind the method that exists on the class FormLoader, a UserControl file.
Ex:
public ...
0
votes
1answer
38 views
error with form action
I have the following C# code:
AddCommentForm = string.Format("<form name=\"AddComment\" method=\"post\" runat=\"server\" id=\"add_comment_form\"><p> TITLE: <input type =\"text\" ...
1
vote
2answers
43 views
Create form action as variable
I have t following ASPX source :
<form name="AddComment" action="ViewArticle.aspx?ArticleID=<%=ArticleID %>" method="post" runat="server">
The problem is that when I click submit I ...
0
votes
3answers
63 views
Text in drop down sets other text fields as disabled
I have an ASPX form with a multiple fields.
The field in question (the drop down) when selected should disable another drop down and text field but for some reason it doesn't work.
What am I doing ...
0
votes
1answer
169 views
A page can have only one server-side Form tag.
Masterpage.aspx
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<asp:ContentPlaceHolder ID="head" runat="server">
...
0
votes
3answers
53 views
What is an ASP.NET web form?
I feel a bit silly asking such a simple question.
I'm taking my first web programming course and I just had a quick question about ASP.NET web forms.
What exactly is an ASP.NET web form?
My ...
1
vote
1answer
132 views
ASP.Net Class References a Control from ASPX Form
So, I've seen many discussions that are in this area, but it seems like they are mostly discussing Windows Forms, or they don't get around to answering this specific scenario enough to point me in the ...
1
vote
3answers
210 views
Show Logged In User Name in redirect.aspx Page
I'm a complete stranger to ASP.NET. But, I've had a project to do using it & faced a problem.
It is :
I have a login.aspx File - Where Users provide login User name & Password
If Login ...
-1
votes
2answers
31 views
Request.Form using in two functions [closed]
I'm creating an online registration system. When user fills the form and clicks on the submit, next page should display that user information.
protected void Page_Load(object sender, EventArgs e)
{
...
0
votes
3answers
971 views
PopUp Dialogs not working after form submit in jquery mobile
I'm doing a simple form submit.On the form submit i have the form action="Facility.aspx".on Facility.aspx i'm using dialog popups.after the form submit those dialogs are not working but they are ...
1
vote
2answers
925 views
Simple Form Submit in Jquery Mobile
I'm trying to submit a simple form using a ajax call to a asp.net webservice but i'm receiving 'error' alert on form submit. Can some one please tell me what's the issue with below code.
HTML:
...
-1
votes
1answer
76 views
How to change the action part of the form element with ASP.NET? [duplicate]
The form element on my page created with ASP.NET looks as such (if I do "View page source" from a web browser):
< form method="post"
...
0
votes
1answer
50 views
ASP.Net application error 4005: The authentication ticker is invalid
We have an ASP.Net 3.5 application which has been running for about 5 years with no problems. We have recently come across a problem:
We have moved a user and a new PC to a remote location which is ...
0
votes
0answers
98 views
Binding id in repeater always passes last id on post back
I am binding a list of products to a repeater each has a unique id that when the add to cart button is pressed it passes the id to paypal through the postbackurl but it seems to only want to pass the ...
1
vote
1answer
148 views
Linking two forms in ASP.NET
I have an HTML form that handles some basic information. When the button for completing the form is clicked, I have a popup asking for additional information that appears (this is a div that is hidden ...
0
votes
2answers
166 views
asp.net form in both master and content page
I have a problem with my asp.net webform I have two from(exclude default form that added automatically) one master page and the other in content page bu when I submit the second one only the first ...
-1
votes
2answers
110 views
how to protect registration form from spam [closed]
ASP.NET/Mono MVC2 E-shop contains registration form which ask for mandatory customer name, address, phone password two times and some optional fields.
Should spam protection added to form ?
Form ...
0
votes
3answers
284 views
Asp.net loading screen/hide form
I have an asp.net form with textboxes, ddls, buttons, etc.
One of the posts takes a while to complete.
What is the quickest way to darken the page, make the user unable to select any of the form's ...
1
vote
3answers
201 views
If Statement to display Label or Button in aspx
I am new to aspx so can someone help me with the following small bit of code. I am trying to create an If statment in aspx.net using Vb, but I can't get it to work correctly.
I am trying to ask a ...
3
votes
1answer
111 views
Convert asp.net app to use asp.net forms authentication - password hashing in SQL Server
Scenario:
An old ASP.NET 2.0 application that uses SQL Server 2005.
Passwords are stored in the database in plain text
We want to upgrade the app to use forms authentication
Need to recreate all ...
3
votes
2answers
157 views
How to integrate AD authentication + SSO with exsisting Forms authenticated Saas web application
We are running a Saas ASP.NET 3.5 Web application using Forms authentication on a IIS 7.5 public server with protected content for thousands of users. We also have some subapplications running ASP.NET ...
0
votes
0answers
41 views
ActiveDirectoryMembershipProvider - ASP.NET
I have created a site which uses ActiveDirectoryMembershipProvider so that users can login.
This works great on the intranet but when I open it up over Internet the "Windows Security dialog" pops up ...
1
vote
1answer
74 views
ASP.NET - Change variable with conditional operator
Basically here is the main part of the code that contains the error:
...
var lname = Request["lastName"];
var comment = Request["comment"];
var sex = Request["sex"];
var title = "";
if(sex = ...
0
votes
1answer
445 views
Prevent Form Resubmission in ASP.Net (without redirecting to myself)
I have a master page with a Form element (<form runat="server">), a content page with a Button element (<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Sync" />), and ...
0
votes
1answer
144 views
How to make an asp.net login form (that uses an existing sql database) from scratch?
I'm new to asp.net. I've experience using php, and there it was quite simple to make a login form that compares the login data to those in a predefined database. The thing is, now I need to use a ...
0
votes
2answers
199 views
Getting data from .aspx webpage by two button clicks c#.net
I am a novice in programming. I have a project where I have to get data from a website (I ll be posting the website below). But it happens that I first have to select a date and press a 'Go' button ...
-1
votes
1answer
39 views
asp.net iis8 app is not loading when using forms authentication
Am using forms authentication. When I tested the app using Visual studio, it all worked fine. But when I created a VD and application in IIS and tried to browse, it just hangs up and the browser is ...
4
votes
1answer
188 views
ASP.NET Forms Authentication - Remember Me issue
I am using "Remember Me" in my Forms Authentication for my ASP.NET webapp.
If I login with valid credentials and select "Remember Me", i can log in and everything is fine.
Now if i close the window, ...





