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...
Funny character being added instead of spaces in .net web forms...please help
Hi,in all of my asp.net pages I have the following html code: <TD class=padding colSpan=2 height=23><div align="center"><A href="#">Privacy Policy</A> »<a href="#"> Terms of Use</a></div></TD>on my default.aspx page, this gets displayed as:
Privacy Policy » Terms of Useand the code isPrivacy Policy » Terms of UseCan ...
windows forms in vb .net into web forms
we are creating a database driven website as part of our project. currently we have forms connecting to the database created in visual basic. these windows forms we need to convert into web forms which are asp .net compatible. can u give me an answer or show me a way.
Hi,
because of the difference in nature between web and win applications you'll need to reimplement at least the UI part. If you have a multitiered application in which the busines logic and data access are in different parts/assemblies you can reuse them.
Grz, Kris.Read my blog. Handy Firefox plugins for web developers.Wor...
.Net Web Form & Web Service DeploymentHi all
I have written some test web services and some web form applications and
deployed them to my IIS. That's fine but I now want to deploy them to my real
IIS server. I have created an msi for each but the problem is I seem to only be
able to deploy to the default web site. Our default web site is turned off and
instead we use several other sites.
Does anybody happen to if Powerbuilder 11 supports non default web sites? If not
do I need to hack the msi and if so can anybody suggest a suitable tool. I have
Orca but it's not very friendly. Unless of course I knew exactly w...
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...
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...
.Net Web Forms
what is the best way to create a multi-page web insurance quote form (similar to Geico) that will insert information into a database? The examples i've seen show one form with a submit button at the bottom. I need to break this form into at least three different aspx or ascx pages. Thanks for the help.
I did something similiar since I have like 7 sections to an application. The way I did it was by using the asp:panel control. When the user finished one section and clicks a button it inputs the data into the database and hides the 1st panel and shows the next one.
HTH...
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...
Could PB .NET Web Form POST security Information to others web page??This is a multi-part message in MIME format.
------=_NextPart_000_00F9_01C9C4D5.8FB45C90
Content-Type: text/plain;
charset="big5"
Content-Transfer-Encoding: quoted-printable
Hi,=20
Have anyone came across the requesion to POST security informations from =
PB .NET web form web page to other web site??
I have tried many datys, Could any kind man give me some suggessions??
thanks & Best regards
Leon
------=_NextPart_000_00F9_01C9C4D5.8FB45C90
Content-Type: text/html;
charset="big5"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML P...
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...
How To Convert c#2005.net web template to vb2005.net Forms Template
I need Convert c#2005.net web template to vb2005.net Forms Template
There are some free c# to vb converters out there which will allow you to upload a project and convert it to vb. The programming models for windows forms and web projects are very different there is no way to convert a web to windows forms project.
http://www.carlosag.net/Tools/CodeTranslator/Default.aspx
Silverlight-helpVb TipsSpace Coast .Net User Group
Hey Ajax-y,
This tool really helps all programmers. I thought I would share this with you in hopes that you will fine some use for it. Thanks to KamalPatel.Net for this tool. You can see the tool here. www.kamalpatel.net
Hope this helps!!
Please give us feedback no matter whether you get your answer.Please "mark as answer" if it's useful for youSincerely,SpongeBert...
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 use iFrame instead...
<iFrame src="subPage.aspx" />
Hi,
much more convenient way to have reusability in "page-like way" is to use user controls.
Web Forms User Controlshttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconwebformsusercontrols.aspThanks,Teemu KeiskiFinland, EU...
C#.NET WEB APPLICATION
hei guys, i need help on my application, i'm using C#.NET as front-ed and SQL as back-end, aside from a datagrid, i want to display my data using textboxes and not a datagrid, i can do it using Visual Basic 6 but since i'm a newbee at C#.NET i don't know how to do it, specially the codes, can anyone help me with it? thank you in advance!
If you are doing windows development, i would suggest using 'DataForm wizard' (Use Solution Explorer-->Rightclick project-->Add new Item-->New DataForm). It will guide you through steps. If you are doing web apps. Use quickstart to learn them.
h...
Web Form : Block the return button on the web form
Hello,
I have a principal form with a list of information. From this form, I go on an edit forms and I want to control what is done on this form.
For this, I want to block the button Windows back on my edit form.
Somebody can help me ?
Thank you for your help.
Jy.
set the Session Variable (with your ID or whatever ) in the Principal Form when user click on Edit then put the One Back Button on your edit form and Redirect the page by using the Session variable value.Please Mark as Answred If This Blog has Helped You.RegardsMitesh Darjihttp://www.indianic.comhttp://www.mitatdotnet.blogspot.com
You can avoid the windows tool bar.just make the edit page as a pop up window and you can set the parameters there .You can also disable the right click if you fear the user will right click and go back just add this code oncontextmenu="return false;" to the body tag of the pop up window.or Did i get the problem right ???? Sumesh R"Don't hesitate to try , you may be wrong but still you could gain a lesson and that's what i call EXPERIENCE "Please remember to click “Mark as Answer” on the post that helps you
Hello Thank you for you answer.
I have a question, on my edit button i wrote this code :Session.Add("UserID", gvUsers.DataKeys[gvUsers.SelectedIndex].Value.ToString());string sURL = string.Format("{0}", "./forms/fEditUsers.aspx");
Response.Redirect(sURL);
Now for the second part, I...
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 possible to access lbl1 from form2, change its text permenantly?
thanks.
Hi once you navigate from the page you can only access its properties if you you cant chnage it
when you return back the value will again be new one unless you assign it
So you can use session variables and set the session variable
Session("lbl") = "Hello"
Label1.Text = Session("lbl").ToString()
hence whenever you chnage value of Session variable it will be reflected in ur labelMAKMark as Answer if this reply helps youMVP ASP/ASP.NetASP.Net Hosting : Host DepotMy Site : ASPSnippets
Thanks for you help
but what I mean is there a method to add a control to form2 permenantly
so even after i close the browser and re-open it the added control is still there .
thanks.
MinaSamy:
Thanks for you help
but what I mean is there a method to add a control to form2 permen...
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-...
Strange output in web form after web form is displayed.
I have been using a web user control for over a week now with no problems. I am now getting strange output in my web form after my controls display on the page. Below is the strange output. Can anyone tell me what is wrong here? Note I did not include it all because it is quite large.
Request Details
Session Id:
l5b5vkazucfatba4oliaw1vi
Request Type:
POST
Time of Request:
9/10/2007 4:59:59 PM
Status Code:
200
Request Encoding:
Unicode (UTF-8)
Response Encoding:
Unicode (UTF-8)
Trace Information
Category
Message
From First(s)
From Last(s)
aspx.page
Begin PreInit
aspx.page
End PreInit
3.68761951588819E-05
0.000037
aspx.page
Begin Init
6.36952461835233E-05
0.000027
aspx.page
End Init
8.91174716339647E-05
0.000025
aspx.page
Begin InitComplete
0.000105879378524366
0.000017
aspx.page
End InitComplete
0.000123479380759286
0.000018
aspx.page
Begin LoadState
0.000139682557420007
0.000016
aspx.page
End LoadState
0.0288617687443516
0.028722
aspx.page
Begin ProcessPostData
0.0289100989092189
0.000048
aspx.page
End ProcessPostData
0.0364705570121342
0.007560
aspx.page
Begin PreLoad
0.0365082713026376
0.000038
aspx.page
End PreLoad
0.0365431919419926
0.000035
aspx.page
Begin Load
0.0365610713093424
0.000018
aspx.page
End Load
0.0586415312560675
0.022080
aspx.page
Begin ProcessPostData Second Try
0.0586867884046715
0.000045
aspx.p...
can someone one give me difference between web form and mobile web form and which or where or when i'm using the forms?
thanks
Marc
Hi Marc,
Based on my understanding, you want to know the differences between the ASP.NET web application and ASP.NET mobile web application. If I have misunderstood you, please feel free to let me know.
The ASP.NET forms are used to develop the ASP.NET pages for desktop browsers and The ASP.NET mobile forms are used to develop the ASP.NET pages for mobile device browsers. When we create the ASP.NET mobile web forms pages, we can use nearly all the features of ASP.NET. But there are a couple of compatibility issues:
Error Handling and Reporting.
Tracing.
Using Redi...
Line spacing, word spacing, char spacing
I already found out line , word and char spacing are not foreseen in GDI+.According to some websites, the MeasureString method does not work the way it should. (which I could use to manually change the X/Y positions etc.)Does anyone know of a component that will do the trick?And preferrably not one that will cost me hundreds of euros :)All I want to do is put some text on an image ...The only problem being is that line, word and char spacing are strict requirement.Seems easy, but I'm quite desperate so thank you for your early reply....
How to call a .net web service from another .net web service?
Hi all,I have developed two asp .net web services using visual studio .net 2003.I wish to call one web service from another web service.I tried adding a web reference of the web service in another web service and was able to do so.but i m not able to access the web methods provided by the web servicecould you please suggest a way to go about itExpecting quick replyThanxCharmy
try to make sure that you reference it in the web reference and call it properly this is sample
[WebMethod()]
public double CalcDistance(int x1, int y1, int x2, int y2)
{
Calculator.Service1 calc = new...
.NET ( Web, Form, PDA )
I heard people saying that when you create a Web App on .NET, you can just click on a button in VS.NET and it will change it to Windows Form App and PDA App. Is this true ? If yes, how can I do it ? Thank You
I hope this is true so , i can good money out of it :)
All what i know is they are a different things.
Fadil Alnassar www.fadilalnassar.com | FREE Nodil Tab Controlhttp://www.mefranchising.com
Well, I haven't heard of that "MAGIC BUTTON" ;)
regards.Bilal Hadiar, MCP, MCTS, MCPD, MCTMicrosoft MVP - Telerik MVP
Ohh ..Means there is no magic button ? Then how do ...