deploying web matrix web pages to host web server
Hi:I'm new to this forum and also in developing asp .net web pages. I created web pages using Web Matrix v0.6.812.0 (connecting to an Access backend in the same folder as the web pages). Now I need to upload it to my company's web server (Windows 2000 with IIS and .Net Framework 1.1) so the customer can see them. My administrator created a virtual site for me on the company's web server and I copied the .aspx, .ascx, .css, .mdb and web.config files to the directory for my virtual site. When I try to access my default.aspx file on the web server thr...
running 2 web.configs in the same website 1 in /web.config and one in /swf/web.config
Im having issues doing this. and when i remove the authentication from the swf/web.config it still doesnt seem to be applying to the child website at all. Whats the proper way to set a child website? Thanks!!
The lower most web.config overrides all previous settings. So if you remove the section from the /swf/web.config whatever settings you have in the web.config in the next higher level will have an effect on the content of the child folder.So instead of removing a section, try giving appropriate settings in the /swf/web.config....
how to navigate the url page in one web application page to another web application page
In my project one solution have 2 web apllications in one folder.like
1.webapplication1
2.webapplication2.
in firt webapplication1 i created one aspx page like sample.axpx.
in second webapplication2 i created one aspx page like sample2.aspx...
in sample2.aspx page have hyperlinl. I need to navigate this hyperlink when i click it go to the sample.axpx.
how can i write navigate url for this...help me.
..thanks
As i understand u, you need Multi Project soltuionsee this link, http://community.rainbowportal.net/blogs/jonathans_rainbow_blog/archive/2006/02/19...
How to open another web page from one web page
Hi, I am writing an asp.net(C#) 2.0 web page with a link to another web page by clicking a button control on the page, so how can I link it in the codes? I cannot access another aspx page class within the current aspx page class.
Thanks
If you need to re-direct the user to another page after pressing your Button, then use the Response.Write method like so:
Response.Redirect("~/Default.aspx")Thanks, EdMicrosoft MVP - ASP/ASP.NET
1) Response.Redirect( "Destination PageName");2) Response.Transfer("Destination PageName");3) Hyperlink( set Url="...
Web page opens second web page, how does first page know when the second one closes?
I have an app written in ASP.NET where one of the web pages opens up a web page in a second window. When this second web page closes, the first web page needs to update its data. How do you do this?
You can have the child window call a parent method when the user clicks a link to close it. Otherwise, you'd have to set up polling to check for the existence of the child, and refresh if it doesn't exist. Please Mark As Answer posts that helped you."If we learn from our mistakes, I should be brilliant by now."
Thanks, this gives me part of the answer...
How to deploy a modified web page in to the web server
Hello
I have used aspnet_compiler to pre-compile my web application, and then uploaded the whole set of files to the webserver. Everything is fine, now i made a little change in one of the files. How can i deploy the modified file, with out recompiling and deploying the whole set of files again. Can i precompile and upload that changed file alone? Please advice Srini
1) You have to recompile. No option here.
2) If you do not want to deploy all the files, I think you can just upload the changed ASPX file and the dll in the bin.]BruceDiscountASP.NET: Developer Ready ASP.NET Web...
How to databind control in one web page from another web page
Hi all,
I have a listbox control and a button control in a web page. Once the user clicks the button another web page is opened.
The new web page will accept some data from the user which will be used to databind the listbox in the first web page.
In other words, the two web pages ( the parent window and the child window) are open at the same time. The child page needs to databind a control in the parent page.
Is there a way to do it?
I need some code.
Thx in advance
Update:
I hate to do this.
Looks like I will have to take help of viewstate and session si...
web web webName: bahadir
Email: sensiz_olmuyor_t1_at_hotmail.com
Product: Firefox 2 Beta 2
Summary: web web web
Comments:
web sayfası yapmak
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 5.1; tr; rv:1.8.1b2) Gecko/20060821 Firefox/2.0b2
...
Is it possible to embed part of one web page into another web page?
Any answers will be highly appreciated. Thanks.
If you can adjust the page you want to embed onto the other page, you could use a .ascx (web forms control). Then you can add controls to it and just drag and drop it using VS.NET from the Solution Explorer window to the webform. You can then also embed it onto other pages in that same web project easily by drag n drop. I hope this helps, it's not exactly a portion of a web page but may be an acceptable alternative for you.Rachel AppelMVP - ASPInsider
In order to better answer this, I could use some details as ...
link a web page to another web page?
I have a web page with my banner and buttons for my site on it.
I want to add this to all of my pages. Instead of copying a pasting that to every page.
Is there a way i can link the pages to the banner page?
Thanx
use ascx?:)
Or you could create a template page.
That is: Create a page inherited from System.Web.UI.Page and
place your banner and buttons in this and then have all your other
pages inherit tis custom page instead of System.Web.UI.Page.
...
difference of calling web services and calling web page
Dear all,
What is the difference of call a web services instead of
calling a aspx page which is also programming can accept parameters and return results?
Webservice -- Soap protocol
Webapplication -- HTTP protocol
Webservices are of two Major types
Xml & SOAP
HttpWebServices
Basic difference is in usage and implementation. We use a webservice inside a website. it is added as a reference or we can call it through HttpWebRequests and Response objects.
Webpages are the components that have presentation and logic, while web services provide the service that we...
i web page referencing another web page
Can one web page reference a control on another web page?
EX. a page is brought up with a number of textbox controls. Using a hyperlink one can pop up a nother page with the calendar control. Select a date from the calendar control and place the value back in the previous page. Can this be done and how?
Use a Page.RegisterClientScriptBlock to open a window, with a javascript string like this: "<script language=Javascript>window.open('my_url.aspx','window_name','left=100,top=100,width=200,height=500,toolbar=no,scrollbars=yes,resizable=yes');</script>" Then you can s...
parent web page --child web page
Dear Developers ,
how to get values child web page values to parent web page ?
For the example , I have parent Employee Address. and child Page have employee personal address.. when i access the Parent page , there is no employee address means ..child page
pop rises , after complete child page then only , i can access the parent page.. how to i do ..
Thanking u
raja
Thanks,Regards,Rajamsrasa@yahoo.com...
want to allow create new web page and edit exiting web page using my web application?
I am using asp.net 2.0 VS 2005 pro edition.
I want to make web application(web form) where my uses can go and create simple web page or can create page , so then can add page/edit features
let me know if some one know , how to do this , any idea,
I want to allow my user to create web page and edit web page using my web applications.
some one tell me how to do that
Note : I dont want to use HTMl editor or any third party software tools
thank you
maxmax
Hello, There is many ways you can implement this.
And to build your application you to need to understand the exact ou...