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
10 views
I want to know how to collect data from an html webform into a manageable site for administrative purposes
I have set up a web form (html5 , javascript) which requires any user to enter their Name(first, last), email, phone number, company, job titled, titled, and reason for VPN access. I would like to ...
0
votes
0answers
4 views
Web.UI.WebControls.WebControl.RenderContents() and Chart.GetHtmlImageMap() ImageMap incorrect
Background I have the dubious honor of rewriting a very broken scientific charting interface with ASP.NET Webforms. One of the requirements was to support simplistic zooming onto via clicking on the ...
0
votes
0answers
38 views
Why Page.GetRouteUrl returns null?
I'm trying implement Url rewriting on my site using Routing, but somehow it's not working. My code is very simple:
in Global.asax:
void Application_Start(object sender, EventArgs e)
{
...
0
votes
2answers
18 views
how to rise event when you click on a gridview row, without selectButton?
I can´t find anything like onrowclick or onclick event, is possible to fire event when you click on gridview row?
0
votes
1answer
11 views
ASP.Net WebForms using Windows Authentication
I'd like to play about with WindowsAuthentication but am seemingly falling down at the first hurdle.
So I created an empty ASP.Net Webforms app and amended the web.config as so:
...
0
votes
0answers
13 views
How to stop control from losing focus on ajax in asp.net webforms
In my web forms application I have a side panel with a timer that auto-refreshes its contents. But when it does that whatever control has focus on the main page loses the focus, is there a way of ...
1
vote
1answer
31 views
asp.net TextBox select only certain text
I want to select a certain area of a TextBox control in asp.net WebForms application.
The situation is that the textbox contains email addresses seperated by ;. I wrote a little MailValidator class ...
1
vote
1answer
34 views
Retrieving HTML form submission in Python when there is a loading page
I'm trying to automate a search on the conserved domain database (CDD) - http://www.ncbi.nlm.nih.gov/Structure/cdd/wrpsb.cgi with python where I submit content to a HTML form. The problem is that once ...
0
votes
1answer
5 views
Generating a link from other columns in Telerik RadGrid
I have a Telerik RadGrid, and it contains a three columns which have UniqueName of OrderNo, SendToAddress, and ResendLink.
I would like to have a hyperlink column that calls a JavaScript function ...
0
votes
1answer
24 views
Copied ASP.net web forms project to another server; using clauses are correct, but some static classes are not recognizable
Ok, so I am maintaining some legacy web form web site application. On old box, the links between the projects are ok and intelisense recognizes the static public classes. After moving the project to ...
0
votes
1answer
21 views
visual studio 2012 Content>Themes vs. APP_Themes folders
I've noticed in VS 2012 that there is a new folder structure called Content>themes>base etc?
What is this for, on ASP.NET web form projects? I've seen a lot of discussion for MVC, but can't find ...
-3
votes
0answers
32 views
choosing the proper fast performance database engine for a CRM app in C# .net [closed]
i am at the end of a 24 hour intensive research, the quest was improving the performance - speed of my new CRM test application , i am building it in c# so i thought about using redis , the question ...
0
votes
0answers
16 views
How to set read permissions for IIS on a network drive (server 2003)
I am working on a project that is running in vb webforms. The site will be running on Server 2003, and I need to access a network folder of images that is used throughout other projects (so I can't ...
1
vote
0answers
22 views
ASP.Net web forms with ServiceStack.Net
I have a ASP.Net web application with around 100 forms. The coding is in VB.Net. We now want to add servicestack.net services inside this application. We want to do this so that session can be shared ...
0
votes
3answers
28 views
Write WebForms Syntax inside of Inline Function
In PHP I can define and use a function like this:
<html>
<head></head>
<body>
<?php
function processItem($item)
{
$item = $item * 10;
...