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...
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...
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 ...
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...
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...
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...
getting start with vb.net and crystal repots(web form)
I use Crystal Report9 in Visual Studio.NET 2003.....
Example at Northwind database
I want a application that.....a form include a combobox that contain CustomerID.....If I choose one CustomerID and click OK button....a Report will display information about this Customer......I think that must use Paramater.....how to do that ????
(How do I start to coding --please step by step or sample)
please help me !!!
Thank you so much!!!
very good
I have Dropdownlist when I choose the 'month'--> the all data of this field will show
I use this
Private Sub ddlMonth_Sel...
VB .net Web Form will not get contents of Text Box
I have created a web form with text boxes that are bound to a DataSet/DataView. I have created button to navigate up and down the recordset. That all works fine.
I need to have the ability to edit/add text in any of the boxes and then when clicking "Save" button, it would build an UPDATE query to send to the database.
When the Save button is clicked, I have coded to DIM a string var (strSQL) to use to build the SQL command. For some reason, it will only get the text from a text box if the data was pulled the database. If I add/edit data, then the SQL command will ha...
IN VS.Net how can i get a web form to scroll (design mode)
In design mode in VS.Net, there is a scroll bar next to the web form, but it is grayed out. I can not figure out how to enable it. I want to design a web form that is larger in size than the surface area shown in teh deisgn window. Can someone help out with this?Thank you.
VS design surface shows how the page is going to be rendered in the browser. Therefore, there is no 'virtual' large size. In the browser scroll bar appears if the browser window is smaller than the page content. You can make scroll bar to appear by enclosing page content in a large container e...
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...
Accessing two web forms in a single web form
Hi. I am developing a website in VS 2005 with Ajax & SQL Server.
I am having 5 forms in my application.
1) Login Form
2) Main form
3) Form "A"
4) Form "B"
I need to show the main form after the User login. I need to show all the contents of form A or form B (Ex: Form "A" user or form "B" user) in the Main Page. Can I show a single page having Main Form controls as well as Form "A" and Form "B" controls? I should access all the controls including Form A/B in the Main Page.
Thanks ...
Passing Values from a Web Form to Another Web Form
Hello All!
I am trying to pass values from one web form to another web form. I know that there are 3 ways of doing this: queryString, Server.Transfer and Session. I am using the Server.Transfer method. But I am not able to create, in my 2nd web form, an instance of my 1st web form. My 1st Web form is named CallTrack.aspx and my 2nd is named Export.aspx.
What I mean is something like this: Public value as CallTrack. I can't create it in my 2nd web form because when the intellisense is displayed, there's no CallTrack in the options.
Thanks!
How about using cross-...
How to access a control on a web form from anoter web form
hi all
I have this scenarios
i have two web forms, one called form1 and the other called form2
form1 has a label with id "lbl1"
is it possible to access lbl1 from form2, change its text permenantly?
thanks.
refer: http://dotnetslackers.com/Community/blogs/haissam/archive/2007/11/26/ways-to-pass-data-between-webforms.aspxSSNPlease remember to click "Mark as Answer" on the post that helps you.
MinaSamy:
hi all
I have this scenarios
i have two web forms, one called form1 and the other called form2
form1 has a label with id "lbl1"
is it p...