Implementing .Net Form into an APS.net web form, can this be done
I am new here, but have been searching for a while, and may not have the correct lingo to find what I am looking for.
I am tasked with implementing a .exe application that was writen vb6 then converted to .net into a new website my team is developing. The idea is to put each of the 3 different forms in this .exe application of 3 different .aspx pages. I have attempted multiple things to get this into the page and even started to just rewrite it as an ASP.net web form, but even then I can't reuse any of the code since the System.Web.UI.Page doesn't inherit the sa...
Web Forms or Windows Forms
Hi;
I got started a new project for a company's Intranet.
This is a test database system which we will use as a pool and put data and update,del,add simply modification operations on.I am learning .NET and implementing this system together
I am using web-forms now.Everyone enters their pass and user-name to be able to use the system.But I can implement this system with Windows Forms also.At this case if you were me which form system you would use?
Thank you for your replies
There are definate advantages to using Web Forms since they do not have to be deployed to each client...
Web forms and mobile web forms
Hey everyone,
I am looking to develope a web site that depending on the device connecting to it, it will display a certain page.
In this case im looking to create a web and wap version of the same project.
I have the Web forms version finished using ASP.NET and C# and I am wondering how to create the mobile web form and incorporate it in the project.
In the project folder, can I just add a mobile web??? But what about displaying device specific pages??
Cheers
-Dudach
Yes, you can add mobile web forms and controls to your Web Application project. No problem. For device/br...
How to Make Web Forms from other Web Forms
In putting together an ASP.NET application for a biz application, we have come to the point where there are three different types of basic forms which have, for the most part, been perfected. Now its is a matter of cloning those forms for various uses and modifying or adding code to suit the particular need.
Copy and paste works OK, but there is a lot of changing of certain words, etc.
Is there a way in ASP.NET to take these basic forms, turn them into classes or templates, create forms from them, then add or overwrite code? ? (Anybody who is a Vis Fox Pro programmer would know imme...
Need Windows Form to Retrieve Information From Web Form
I have a cash and carry web site that customers can order products, the next day come in to the company to pay and pickup.
I would like to create a windows application for the company to do two things:
1. download all the orders from the day before
2. upload price changes, product changes, category changes
I've search the internet and forums and the only thing I can find that I think would actually link these two together would be a web service. Can you please tell me if I am heading in the right direction or if there is another method to link the two applications, if there are any pitf...
For interrupting.web form Resized by position of the div : if div can't dispaly all (such as only top part , then web form heithten the heght),resize the web form
Web Form Resized by position of the div : if div can't dispaly all (such as only top part , then web form heithten the heght),resize the web form !
Because of my pool English, if you can't see , I will explain more ! ThanksGambler is the real life
I guess you mean when form grows it also grow parent div element. This is normal. If you want div to stay fixed size and rather clip the form and maybe show a scrollbar, look at overflow property in CSS.Thanks------------------------------------------------------------This posting is provided "AS IS" with no warranties, and confers no ...
Web Form vs. Web Content Form
If you don't mind, I would like to know what is the difference between those two items, when I go to add a new item I see both of those and I don't know what the difference is.
A content form is for use with a masterpage. A web form is a standalone web page. If you select web content form, you will then have to specify a masterpage for it.
and what is a master page used for?
Hi,
a master page is used to give a constant look and theme to a site, without having to duplicate code. So basically you can put your header, menu, nav and footer on a master page. Then a...
How to fire events in other web form from other web form ?
Suppose that I have A and B web form.
I want to trigger B web form's Page_Load event from A web form.
How can I do that ?
Thanks in advanced
WilbertWilbert Bujn
Create a public method in B that call the load method :
public void Load(object sender, System.EventArgs e)
{
Page_Load(sender, e) ;
}
In the page_load of A, instanciate a B object and then call the function
B myB = new B() ;
myB.Load() ;
Quicky
Thank you quicky, it works fine.
WilbertWilbert Bujn...
Web Form embedded in another Web Form
Hi,
I have programmed a Web Form which acts like a scientific calculator. I would like to embedd this calculator in the upper left hand corner of another accounting Web Form. I don't want to host the calculator on the same server as the accounting page. I.e. I want them to have distinct URLs. Classically, I would do this using frames, but is there a better way using ASP? Is there some sort of Panel which can display the webpage at a specific URL which I can just drag onto my accounting Web Form?
Thanks,
P1000
Frames are the only way to embed a webform inside ano...
calling a web form from another web form
I would like to know what is the best way to open a web form from another web form. I would like to call it from a button control.
Thanks
Well, if I've grasped your question right, there are many methods to do that:
1)Response.Redirect > To navigate to another page from code and is equal to clicking a hyperlink. I suggest this as I think it's closer to your question.
2)Server.Transfer > This ends the current web form and begins a new web form. It's usable when you want to pass some variables i.e (Label1.Text) to the next immediate page. It's not safe though and not used to send p...
Include web form inside web form
I tried to include an aspx file in a asp.net web form. However, all the web controls (textbox, button) in the included page are not displayed when called.
<Form id="Form1" method="post" runat="server">
<% Response.writeFile("subPage.aspx"); %>
<asp:button id="btnPrev" runat="server" text="Previous"></asp:button>
</Form>
There are some <asp:textbox> controls in the subPage.aspx file, the file itself works fine, but when it is included in the main page, all the controls are not displayed.
Please assist. Thanks
u should u...
Converting Windows Form to Web Form
Is it possible to convert a windows form to a web form?
I want to convert a VB 6.0 application I worked on for a year(24 forms) to a web application.
My plan is to migrate form VB 6.0 to VB .NET and then to ASP.NET
Thank u in advance.
well an ASP.NET app can do anything that a VB6 app can do, that is for sure :)
so it is possible
the question is how easy?
how well did you keep separate business from user-interface logic?
it may be as simple as cuttting/pasting a bunch of methods, and dropping a few visual components to call them.
to maintain full compliance with...
call a web form from a window form
Hi all
I need help about calling a web form from a window form. i don't know if this is possible but if it possible please give me some help, any kind of help.
thanks.
Miguel A.
Usually you can open any exe from within the windows form, and to do so, you could open the iexplorer.exe and give it the url of the webform to run it.
regards.Bilal Hadiar, MCP, MCTS, MCPD, MCTMicrosoft MVP - Telerik MVP
would you give me an example? please,
tanksMiguel A.
please i need some documentation or examples about this.Miguel A....
Migrate Window Form to Web Form
Hai
How to convert Window (Visual Basic) Project to ASP.NET Web Project.
V can able to convert VB to VB.NET. But i dont know whether VB to ASP.NET is possible
Anybody can response this..
Thank
Stella.
...