Web Forms :: Address Without .aspx On The End?
Apr 20, 2010
Surfing the internet ive noticed that some webpages when you open them you have like www.website.com wihtout any /index.html or default.aspx
But when i surf on my aspx website i get the adress to see like www.mywebste.com/default.aspx and when i go to another page it will be let say /about.aspx
Is there a possibility to change and when i come to my webpage it will be only www.mywebset.com without any /default.aspx or anthing else.
Or for example if i go to another page it will not be /about.aspx but only about, or will still only be seen www.mywebsite.com
View 4 Replies
Similar Messages:
Feb 17, 2010
I'm verifying e-mail address using WebMethods, however, I'm getting a 404 not found (error console) saying that it can't find activities.aspx.aspx. I am using URL-Rewriting, but I tried adding a detect for 'activities.aspx.aspx' and redirect back to .activities.aspx' but it didn't do anything.
Here is the error:
[code]....
View 3 Replies
Mar 29, 2010
I have an email address on an Aspx page. How can I make the email address hyperlinked so that when clicked on will open the email sender?
View 1 Replies
Nov 23, 2010
This is the current architechture and this is the question I have: Current architechture: We have an intranet application. No one accesses from outside the firewall. It's pretty simple architechture. We have a webservice and WebUI. The Web UI calls the webmethods of the webservice. So far so good. It works fine. Both webservice and WebUI runs under the context of the same service account (non human user account) that we created. The security is a role based security. If a user is a specific AD group, he can access with web UI. On the webui and webservice we have "Integrated windows authentication".
Code:
<authorization>
<allow roles="MycompanyApr-DataWriters"/>
</authorization>
So all the users and the service account that runs this webservice are in this AD group Apr-DataWriters. When a user launches this webUI, I want to find out either his box number of IP address of this box and datetime stamp. How can i get that information.
View 5 Replies
Dec 29, 2010
i have some page in aspx that display order details after user make order trought the site. i want to send to his email the same page. the page containe few gridview and fromview from few SQL tables. is it possible?
View 15 Replies
Jan 27, 2011
Possible Duplicate:
Removing a querystring from url in asp.net
How to hide asp.net querystring displayed in address bar as default.aspx?id=2&name=sanjay
View 2 Replies
Aug 22, 2010
I have a previously working ASPX website which also supports AJAX. However, we just upgraded our SQL Server to a new version and now this website is no longer working. I believe the problem is that now we need to again restore original SQL accounts and settings prior to this upgrade. This website also uses AJAX. Which accounts need to be created to fix this problem? When I navigate to this URL, I get the message below:
The address is not valid.
View 1 Replies
Apr 15, 2010
I have managed to expose the MEX endpoint of my WCF service and I can access it with the address like [URL] (example) and get the WDSL. So no problem there.
However, my WCF test page shows the address wrongly by using the server's name instead of the DNS name. And if I click on the link on the test page it won't work (can't get WSDL).
The WCF test page looks like this:
MyService Service
You have created a service.
To test this service, you will need to create a client and use it to call the service.
[URL]
The WCF service is hosted in IIS6. I would like to have a test page with the correct WSDL address so users can see the WSDL quickly in the browser just by clicking on the WSDL address.
In short: How can I change the MyServerName to inter.mycompany.com on the WCF test page? Can this be specified somewhere in the Web.config?
View 3 Replies
May 26, 2010
I am trying to pull entries from a database based on the current users IP Address. Here is what I have so far:
[Code]....
I am receiving the following error: Cannot find either column "Request" or the user-defined function or aggregate "Request.UserHostAddress.ToString", or the name is ambiguous.
Is it possible to do this? Should I try to access this information another way?
View 3 Replies
Sep 2, 2010
Is it possible to find out the clients IP and possibly MAC address from non IE browsers (i.e. without using ActiveX)? If so, how?
View 1 Replies
Nov 9, 2010
How do I obtain the IP address or MAC address or some Unique ID of a device within a mobile app, either client or server side?
We are developing a web application targeting iPhone, BlackBerry and Android, generally device independent, and we are looking for ways to uniquely identify a device for added authentication purpose. Is there a way to uniquely identify a mobile device, regardless of the make and model?
View 3 Replies
Jul 13, 2010
I want to know how can I load my files (file1.aspx and file1.aspx.vb) in a container on my index.aspx. My index should have my menu and my container. My problem is that i don't know how do that... options wich i tried:
Iframes: yes work it... but in html 5 iframe will dissapear...
MasterPage: isn't the solution because this refresh all index page.
Ajax: yes.. charge my File1.aspx in the container but i can't call the functions of File1.aspx.vb...
View 2 Replies
Jan 31, 2011
how do I grab an email address from a web form and email to that email address with the link to a webform?
View 5 Replies
Mar 11, 2010
I have 2 pages Page1 has a dropdownlist, page2 has this on pageload:
View 5 Replies
Oct 18, 2010
How to display text in another Web form
In Default.aspx I have a GridView. How to Default2.aspx, show data from Default.aspx?
I have a textbox on Default2.aspx.
In Default.aspx I have a GridView.
Data from the GridView I want to show the textbox (Default2.aspx).
View 2 Replies
Jul 2, 2010
I put common code in the app_code directory. I access classes in the code all the time from aspx.cs files by "using" the name space from the C# file in app_code and then referencing the class. Now I want to access a class from an app_code file a aspx file. How do I do this?
View 8 Replies
Oct 19, 2010
I have to pass the value [sysid] for getting the value from another table.
I coded asp:
[code]....
View 7 Replies
May 21, 2010
I am writing an appointment form that has search date textboxes: startdate and enddate with a search button.
(in file date.aspx)
<asp: textbox id="sdate" runat="server"></asp:textbox><asp:textbox id="edate" runat="server"></asp:textbox>
<asp:button id="btn_search" onclick="btn_search_Click" />
(in file date.aspx.cs)
void btn_search_Click() {
---in here i can list all the dates based on the input in date.aspx
---output like saturday, 1/1/2010 open
sunday, 1/2/2010 office close
monday, 1/3/2010 open
}
However, i want the output like this to be displayed in date.aspx. So for each date i can have different time schedule.
Like
search dates: [textbox sdate] to [textbox edate]
[button search]
saturday, 1/1/2010
[time table1]
sunday, 1/2/2010 office close
monday, 1/3/3010
[time table 2]
...so on
View 2 Replies
Jan 26, 2011
I am new to asp.net. I need to know the difference between the following 2 methods :
1. double clicking the button placing the code
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[Code]....
View 5 Replies
Jun 7, 2010
how can i get the the Full URL in this Case "default.aspx#innerpages/Conferences.aspx"
View 4 Replies
Jun 23, 2010
How can I access my GridView in Customer.aspx file from another NewUserLogin.aspx file.
How should I chnge the access to my GridView to public so that I can chnge its values from another aspx file
View 5 Replies
Aug 12, 2010
.aspx:
<input type="file" id="file1" name="file1"/>
now i want to call the file control in .aspx.vb page. how can we call this..
View 3 Replies
Jun 10, 2010
Any one have idea about rewrite url in detailed,want step by step process about rewrite url.
View 3 Replies
Oct 3, 2010
I can manually add an I.P. address to the IP Address and Domain Restrictions form in IIS, but how do I do that in codebehind dynamically. In my web App, after a user has provided their login information, I want to be able to add their I.P. address to the list so that they can access the site automaticaly through codebehind.
View 6 Replies
Oct 14, 2010
i am creating CMS and display the content of every page on a single page when i/user click on any URL the pageid is transferd through query string variable on default.aspx page and content is displayed in div, when value is transfered to default.aspx page the url is like this example [URL] now i want to change it like this................
View 2 Replies