What Is The Performance Achieved By Using Windows Forms Controls In An HTML Page?
To provide enriched GUI in .NET Windows Forms can replace ASP.NET Web Forms in a Web Application.
To host/activate a Windows Forms control within Internet Explorer (IE):
1. Create a Windows Forms control
2. Create an HTML document with an object tag that identifies the Windows Forms control
3. Configure the virtual directory for proper activation of the control
4. Configure Code Access Permissions
5. Run the control
.NET Redistributable should be present in the client to run this control in IE.
What will be the performance of a page designed in this manner?
An ASP.NET page (using Web Forms) provides a performance of around 3 seconds over a decent internet link. Will the same be achievable using Windows Forms?
No doubt, Windows Forms provide the best performance for Desktop Applications, but what about in a Web Application as explained above?
This approach is similar to Java Applets. And Applets have failed over the web in time critical applications.
I surfed quited a few .NET related sites (MSDN, gotdotnet etc.) for typical numbers on performance for this kind of page design, but in vain.
View Replies
ADVERTISEMENT
i have a webpage which has 3 forms and each of the form has a about 20 controls ...
now what i want is to have these controls displayed in a mixed manner on the screen ... moreover the ACTION pages of all the three forms are different ...
so is there anyway in which we can specify that TO WHICH FORM do they belong ....
my page is something like this Code:
View Replies
View Related
My website is currently made up of HTML pages and residing on a Windows server.
Currently converting them all to ASP, that is going from .html extensions to .asp (besides adding funking asp functions)
My pages have all being indexed by Google, so wouldn't risk loosing good ranking with Javascript redirects, so I tought using this would solve the issue, for example, on a file named thatpage.html
<SCRIPT LANGUAGE="VBSCRIPT" runat="server">
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://www.mywebsite.com/thatpage.asp"
</SCRIPT>
Wherever where I insert it, in the head, in the body, before the DOC, it's not working, will have to resort to javascript? Will I have to put a link in the html page leading to the asp page? Wouldn't like to have user click agin to be led to the .asp version?
View Replies
View Related
I am trying to write javascript which will enable or disable a control on client side. I am writing a sample code here in VB but it will not work on client side, I need same kind of code in Java:
Function SetControl(ByVal ControlName As Control, ByVal strAction As integer)
If strAction = 0 Then
ControlName.Enabled = True
Else
ControlName.Enabled = False
End If
End Function
this code will not work, it is just an example and I need this kind of script to place on the top of my page which I can use on client side.
View Replies
View Related
I have a list of radio buttons that is populated from the database.
The value of this radio button from the DB is SalesRanking
If one selects the radio button (Sales Ranking) then I want to display 2 select boxes.
Is this possible?
View Replies
View Related
I am tyring to rewrie an app alreayd written in windows to form into webform. The logic code remoans the same. I just the UI to change form windows to web form. How do you convert the UI in the easist possible manner i.e. writing the least amount of code?
View Replies
View Related
How do I add controls in an asp page at runtime ? Does anyone have a sample piece of code? or sample? or link?
View Replies
View Related
What I'm trying to do is create a page where a user is directed to enter a code (something that will be supplied to them ahead of time) When they enter this code and hit submit I was hoping it could then goto a dynamic HTML page that would contain adifferent form depending on what code they enter.
View Replies
View Related
In our legacy asp/web-application, we have
date/time-input form in USA style
(i.e. mm/dd/yyyy and 12hour-scale time with AM/PM).
There is also some validation code on client side,
and then submitted data are used in MSSQL queries.
Now I would like to know about how to generate locale-dependent
HTML form layout, and what ready-made ASP code could I borrow
for this task.
View Replies
View Related
My company has recently started testing Win 2k3 servers to replace our current 2k versions. The problem I have is that our IT group sent out an email to all web developers stating that HTML forms would no longer be supported in 2k3 and all forms would have to be converted to asp pages.Since the form tag is in the html specs, I find this rather hard to believe.
View Replies
View Related
I have a table having 3 columns. There is a checkbox for each line. I
need to get those lines whose checkboxes are checked, and show those
lines to another webpage. Is there any way to do that? My concern is
that all information in the table are in <tb></tb> pairs without any
name tag. Any idea?
View Replies
View Related
I've a strange problem with Windows Vista, running an ASP page on local
machine (http://localhost/test.asp), the page does not give me any error but
the asp code is not executed (simple code : <% response.write("hello") %),
it show me a blank page, I think I've put all the setttings correctly, but
maybe I must do something obvious to fix that.
View Replies
View Related
If I have two forms in the same asp page:
<form name='firstForm' action='myPage.asp'>
</form>
<form name='secondForm' action='myPage.asp'>
</form>
When using request.form, how can I get values from a specific form?
View Replies
View Related
If I have 2 forms on a page "form1" & "form2", is there a way to figure out which form has in fact been submitted ?
View Replies
View Related
I have a query on a page that displays the results of a recordset. Each row has a check box that has the table ID associated with the row of data.
I am trying to figure out how do I send every row checked to another page and have that page know the ID's that were checked so the next page can query the table for those ID's and fill out a submission form. I know the form fields I can write so it dynamically names the value based on the script, that part is easy, but trying to figure out how to have the script accept multiple ID's so it can go through each and display the results is not.
Now this is simple if I am just sending one ID to the next page, I can just use a "Post" and append a ?id=xxx to the URL and then do a request.querystring for the ID. Where I am confused is trying to send multiple ID = 's to the next page so it reads more then one ID if more then one was checked on the previous page which 99% of the time it will be.
HERE IS MY MAIN QUESTION:
What should I look up to point me in the right direction to create a classic VBScript/ASP code to parse through the ID's that were checked on the previous page and have the next page query each ID for the data?
I can pretty much figure out how if I know what I am looking to do. I was just looking for some sort of direction that I can pursue to understand how do do this task. What is it I am trying to do? IS there a term or set of terms I need to consider looking up to get examples so I can tweak and write it from there?
View Replies
View Related
I have a form I am validating on a page. Currently I have the page call itself to check the form values for validity. I want to use the form post method to send the form values to the Update page but can't because I am using the "Response.Redirect" which doesn't post the form values to the next page.
What is a good way to validate a form values then direct it to an update page if values are valid. Should I use Client-Side or Server-side script?
View Replies
View Related
I am looking for a way to pass an ADO recordset that has been retrieved in
an ASP page to another HTML-page. Is there someone who can provide me with a
small sample or a link to see how this is done?
View Replies
View Related
I have a ASP Page[inline frame in an html page] that does login to a database.
When the user visits the site, the first attempt to login will always failed and session is broken. Login name and password are correct though.
Only when the user re-try agian he/sge is then able to login to the site successfully. Can anyone tell me what could had caused the first time login failure?
View Replies
View Related
I have FrontPage 2003 on my XP laptop. I need to test some web pages with *.asp codes which worked perfectly well with my old Win95 computer in the past. Of course I had to install Personal Web Server to it in order to do the job.
The help files of FP, gives the clue that it has the facilities to behave like a server and test interactive web pages. But I haven't seen the use of ASP pages with it. I do not wish to install a server on my XP just to test ASP pages.
View Replies
View Related
does anyone know how to run a .wsf file from an ASP page?
View Replies
View Related
How do you close windows media player in a web page after its played. I have added a windows media player to my web page as:
<object id="Player"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
..
..
..
After its played I would like it to automatically close.
View Replies
View Related
The ASP application uses the "File" active-x control. On windows 2003
IIS(6.0), the download the file fails with the Error: Request object error
'ASP 0104 : 80004005'
The above error is retuned by my asp code: lnBytes =
Request.BinaryRead(lnByteCount)
I did not see this error on windows 2000 server. Is there any solution/workaround available on Windows 2003 IIS(6.0) for this issue.
View Replies
View Related
I'm using formmail.asp which is an emailing utility. Basically, the user
fills out a request page, clicks "Submit" and the page posts to formmail.asp
which emails the user information.
I'm running IIS5 on a Win2k server box and recently ran the Windows Updates
(the last time I do that). Anyway, that emailing form doesn't work now on
any of the sites I host. Any ideas?
View Replies
View Related
I have a web form page that passes values to an asp page, in which an email is sent to the customer with those values. The email functionality works fine. But I also want to display these values on a separate "thank you" web page after that.
What is the code to make those values display in the "thank you" web page? Does this involve adding code to the asp page and the "thank you" html page as well?
View Replies
View Related
I developed the asp page which shows the all transaction records of the particular day in tabular form.But the probelm is that when i take print preview of the page directly from broswer ,print result takes more than one page so i want to reprint report header and then rest of records
View Replies
View Related
i want to show my ASP pages as HTML, in the address bar of IE or NE the ASP page extention for example (result.asp) should look like(result.html) ...
View Replies
View Related
is there a possibility that i can use this statement
referer = Request.ServerVariables("HTTP_REFERER") in a .html page??
View Replies
View Related
How can I generatea a HTML page which will have contents read from a local file on server.
View Replies
View Related
I have a html form, and I like to know how to capture the values in the form after the user hit the submit button. How do I capture these values in an ASP page?
View Replies
View Related
I have developed a HTML page containing form and table having some fields, Now What I want is that when I Click on Submit Button then all of the Form Fields should be email to a particular email address just like as they r on the form. So my problem is that i have created an ASP page containing code about to pick data form form fields n send it to email address i mentioned, But i dun know how to request an ASP page in a html page, Iam using
<Form name=MailForm action=MailForm.Asp method=post onsubmit="return Validateform()"/>
<Input type=hidden value=junaid@easterntextiles.com name=recipient/>
Just after the table creation but it doens;t work because when i click on submit it ask me to save or open MailForm.asp.
So is there anyone who can explain me how to run this file directly with in html page or how to use asp code in html page.
View Replies
View Related
I have a HTML page named Index.html which is divided into 3 frames. The URL of 2 of the frames are HTML pages but the 3rd frame houses a ASP page.
Now when I go to Windows Explorer, navigate to the folder in which the all the 4 files (3 HTML + 1 ASP) reside & select Index.html (by clicking with the mouse or by using the arrow keys on the keyboard), strangely the Windows "File Download" dialog box (with 'Open', 'Save', 'Cancel', 'More Info' buttons) pops-up with the message Code:
View Replies
View Related
I know you can use the XMLHTTP object to retrieve Html, but how can you get html created by an asp page? Is there a way.
View Replies
View Related
Is this affective way using HTML Templates in ASP:
I have html template file with <<TAG1>> .. <<TAGN>> in places, where I want to insert some data then i generate this data in asp:
Dim d ' Create a variable.
Set d = CreateObject("Scripting.Dictionary")
d.Add "TAG1", "Athens" ' Add some keys and items.
d.Add "TAG2", "Belgrade"
d.Add "TAG3", "Cairo"
, open html template, replace each <<TAGx>> with generated data
(d.Item("TAGx") ),
and print it with Response.Write
Or there is any other usual methods to use templates?
View Replies
View Related