ASP.NET Web Forms is a part of the ASP.NET web application framework. It is one of several programming models one can use to create ASP.NET web applications.
0
votes
0answers
5 views
Asp.Net membership always saves first role from dropdown
I am trying to add Role based functionality to my asp.net web-form based website.
I have created Three Roles using ASP.Net Configuration as
Admin
Guest
Editor
and i am using CreateUserWizard to ...
1
vote
1answer
47 views
Replacing string in dropdown menu
So im trying to load a different string when the user has selected a different item, my code:
void ModeSelectorSelectionChanged(object sender, SelectionChangedEventArgs e)
{
var data1 = ...
0
votes
1answer
13 views
Reading an RTF file inside a business logic (DLL) referenced from ASP.NET application
How do you read a file inside a business logic (DLL) located in that project where it is referenced from an ASP.NET application ?
Here my scenario, i have a web application then a library which load ...
1
vote
0answers
12 views
ajaxToolkit:AjaxFileUpload passing parameters to server
I am using ajaxToolkit:AjaxFileUpload (June 2013 Release). An id should be passed to the server when uploading.
How can I achieve that? Setting "ContextKeys" does not work - it's null on the server.
...
0
votes
1answer
48 views
Save all values on one click
i have listview, where i have column players and attendance. I want edit all record and save only one click on the "save button". It is possible?
Table1:
Name attendance
Lukas TRUE
MARTIN FALSE
...
0
votes
2answers
44 views
Specified argument was out of the range of valid values asp.net
I'm adding dynamic Rows in ASP.Net GridView Control with TextBoxes. But I'm getting the error below when I click on my Add New Row button.
Specified argument was out of the range of valid values. ...
-1
votes
0answers
12 views
Adding database in webforms
i am trying to add a exiting database to app_data.the database is a .mdf database and i have also detached it from the sql server management studio .how can i attach it to my webform application ?
...
0
votes
1answer
27 views
Align Listbox, Button and Labels side by side
I am trying to align listbox, button and the labels side by side as shown in the figure but this is not working.
Basically I am dragging and dropping the controls side bar of visual studio and ...
-1
votes
0answers
8 views
asp.net third party controls rtl support
We would like to use an asp.net 3rd party control suite for and asp.net webforms project.
The controls we are after are Grid, Navigation Menus (simple or ribbon), TreeView, ComboBox.
The requirement ...
-1
votes
0answers
13 views
asp.net control suite and rtl support
We would like to use an asp.net 3rd party control suite for and asp.net webforms project.
The controls we are after are Grid, Navigation Menus (simple or ribbon), TreeView, ComboBox.
The requirement ...
0
votes
1answer
23 views
ASP.Net Dynamic popup window
I have a C# web app that pulls a json object from a web service after a button click even. This object has HTML code saved in one of its properties. I need to popup a window to the user from this ...
-2
votes
1answer
20 views
Adding Asp.Net Webforms Project into an existing Asp.Net MVC 4 [closed]
I have a MVC4 Project and a WEBForm project ASP.NET 3.5, this ASP.NET WEBform has a has its own Web.config and APP_Code.
I need add a existent ASP.NET WebForm into this MVC4 Project.
0
votes
3answers
24 views
how to delete a row on gridview on button click and generate javacript validation before deletion
I have shown the records through gridview and the edit and delete
buttons with it.iam havng problem in the record deletion section .When
the user clicks the button a javascript validation function ...
1
vote
0answers
26 views
Umbraco - Using .net macro in editor with binding controls
I'm trying to use a .NET User Control Macro in Umbraco 6.0.6 editor, but using a formview control I can't get access to controls inside it on page_load event.
Ex:
ASCX:
<%@ Control Language="VB" ...
0
votes
1answer
43 views
how to update a record from the values taken from the text box fields
I am making a list of records in a web form with edit and delete options. I have retrieved the values in the text box fields for update. Now, when
the user clicks the update button, the record is ...