Web Forms is a part of the ASP.NET web application framework. It is one of the different programming models you can use to create ASP.NET web applications. Web Forms are pages that your users request through their browser and that form the user interface (UI) that give your web applications their ...
0
votes
0answers
6 views
Calling Controller from aspx page
I have been trying to find a solution to my problem for 2 days now and I am really stuck. Here's the problem:
I have an MVC application (with Dependency injection and the works) with just one ...
0
votes
0answers
11 views
Accessing Skype with Lync (or something else) to replace SkypeKit.Net
I received an email from Microsoft stating that their SkypeKit, which includes the .Net flavor I presume, will cease.
The head of the group indicated that for very code savvy programmers can use Lync ...
0
votes
0answers
12 views
How to place user control aspx code in C# or another file, but not master page
Pertains: ASP.Net Web forms (4.0)
I have several popup user controls that a user can initiate either through a menu click or a hyperlink.
The problem is that the initial code needed to display the ...
0
votes
1answer
30 views
difference between Page_Init vs OnInit
I had an interview a week ago and one of the questions was what the difference between OnInit, Page_Initand and PreRender. and which one is preferable.
-2
votes
0answers
21 views
need some help about integration of Paypal in asp.net c#
I need a lil bit help, i'm integrating Paypal in my asp.net c# website and having some problems like i have a table called "Packages" which gets packages from database and when someone click on any ...
1
vote
1answer
13 views
How to assign own method property to ObjectDataSource?
I have my ObjectDataSource enstantiated like so:
<asp:ObjectDataSource ID="x" runat="server" InsertMethod="xx"
SelectMethod="xxx" TypeName="xxxx"
UpdateMethod="xxxxx">
Select, insert, ...
1
vote
0answers
44 views
HTML (table) elements with dynamic controls?
So I don't get something that looks like this
I could use multiple placeholders to achieve this but I feel as though that is inefficient and would take longer to loop through each control. It would ...
1
vote
0answers
21 views
Open Closed approach to mapping correct entity properties to relevant view models
I have inherited an existing application that has a list of SQL Database Views used for reports that are full of pre-processed result data that are broken up by a report type and value type and they ...
0
votes
0answers
12 views
KendoUi ASP.NET (Web form) Inline Editing along with Template
Hi all,
I am going to implement master/detail form using KendoUI webform in ASP.NET 4.5. I have to create a row template which you could find the style in the picture. Each row should be editable.
...
1
vote
0answers
8 views
Use jQuery Validation Engine with Tabs?
I have an ASP.NET web forms page that uses jQuery UI tabs. Within each tab there are sets of inputs, including a button that submits the inputs within the tab (using an AJAX call, but that's not ...
-1
votes
3answers
78 views
List.count always resetting to 0 after adding element
I am creating a Web Form using visual Studio 2010 and I have a .aspx page that grabs some user input and saves it to a database. There are two buttons on the page, one for the user to "save" values ...
0
votes
0answers
6 views
Dropzone in ASPX page with MasterPage
I am trying to add drag and drop multiple file uploads to my an web forms page that is within a master page and update panel. My goal is to have the files queue until the user submits the form so ...
0
votes
0answers
17 views
Ability to navigate back with browser button without showing control alerts message boxs that appearing in the middle of the navigation process
I am searching for techniques/ approaches to solve this problem:
dummy scenário:
In main page I have a button. when I click on it, it display a message: "are you sure?"
when I click ok... it ...
0
votes
3answers
38 views
How to get only some fields from a JSON?
I get from a external source a json with TONS of fields. I don't care about most of them, I just need "some" of them. (which are at different child-level).
So I don't need to have a "strong type" ...
3
votes
2answers
48 views
retrieving the value of dynamically generated Textboxes in asp.net
i have a column in db which contain multiple values separated by comma
now i want to edit it so i retrieve the values from db separate it and store it in string array
then generate textboxes and ...