Web Forms :: Hyperlink To Direct User To Certain Page At Time Of Day?
Apr 9, 2010
Got this question, probably simple to most people but I only just started using visual studio 2008 with c#
Create a 'contact us' web page (form) for your photocopier repair company that links dynamically depending on the current time. The linked pages should give details of support engineer contacts for different regions, during normal working hours and when the offices are closed.
You should use the HyperLink control to link to different pages (depending on the time of day.) At or after 5:00 p.m., the HyperLink control links to a page named AfterHoursHelp.aspx and before 5:00 p.m., it links to OfficeHoursHelp.aspx.
View 2 Replies
Similar Messages:
Mar 3, 2011
How to make hyperlink field or buttonfield pop up a window and redirect to a new page at the same time? so far it can only redirect to a new page, but target is also to pop up a child window when try protected void Cheque_GridView_RowCommand(object sender, GridViewCommandEventArgs e) can not find a way to add attribute to button to use javascript to pop up a child window <asp:HyperLinkField Text="Select" DataNavigateUrlFields="BatchNo, BankCode, ChequeDate2, IssueDate2, CompanyCode, VoucherBatchNo, VoucherNo, ChequeID, ChequeNo, PaymentType, DespatchType, DespatchDate2, Curr_Code, Amount"
datanavigateurlformatstring="~/Edit_Batch/AddCheque.aspx?BatchNo={0}&BankCode={1}&ChequeDate={2}&IssueDate={3}&companycode={4}&VoucherBatchNo={5}&VoucherNo={6}&ChequeID={7}&ChequeNo={8}&PaymentType={9}&DespatchType={10}&DespatchDate2={11}&Curr_Code={12}&Amount={13}" />
View 1 Replies
Jun 5, 2010
The ASP.net 3.5 SiteMapPath Control shows the site map but not necessarily the path thru a site. If a user links from one page to another using a hyperlink, the Site Map does not seem to show the actual path, only the site Map. If this is incorrect, please let me know.If it is correct, do you know of another control that will show the actual path thru the site in a session?
View 8 Replies
Feb 15, 2011
So I am using a simple GridView control to display a table containing Sender_ID, Subject(hyperlink), date . When the user clicks on the subject hyperlink, another page with the Body should open. This page should also contain a Back button for navigation.
View 5 Replies
Jun 17, 2010
I'm not sure if this is the best category for this one... Might be more appropriate in the navigation section.I am curious as to the standard for redirecting users to a entry page on first accessing a website. In my case, I am working on an adults only website that requires a warning for users that the content is only appropriate for users over 18yo, as well as containing the scripts to activate several different monitor systems to prevent children from accessing the site.
I know I can use session_start to redirect and check for a cookie... but that seems heavy. Is there a better way? Something in IIS or... something I have not thought of yet?
View 5 Replies
Jan 27, 2011
How to Direct Users to specific Page By roles?
View 10 Replies
Jan 5, 2011
How is a hyperlink added to a panel at run-time?
I can add controls with <panel>.Controls.Add( <control> )
But what if I just want to add a nice, simple (and fast) :
<A href =foo>bar</a>
View 2 Replies
Feb 10, 2010
suppose i have four hyper link in my page if user click on any hyper link then a file will be downloading in client machine. if user click on 4 links one after one then 4 file will be downloading in client machine. so i want that if user click first time on any link then a file will be downloading and if user click on second link when first file is downloading then i want to show a message to user that already one file is downloading from your IP and stop second file download. when first file download will be completed if then user click on second or any other link then another file will download in client pc. when file is downloading in client pc then we have no control over it and ever we not being able to know when download complete. so it is getting hard for me to implement by code.
i think from my question anyone can understand what i want that at a time one user can download one file at a time and will be able to download next file when first file has been downloaded in client pc.in this way i can restric the user to download large files more than one at a time. how to implement this with code in asp.net.
View 4 Replies
Mar 11, 2011
i created a user control and place a button on it.i drag dropped the user control on a aspx page and wrote the grid load and button clicks in the
user control.now i got a requirement to use the same user control grid and button to again use on the same page.however the data populated will be different and the button click functionality will be different.how can i reload the different data on the second grid as i had already wrote the code in the first one
View 2 Replies
Sep 28, 2010
how to redirect to particular page after login. I have login,EDetails,home page..
1.If the user login very first time(suppose he does not have any personal details) he should be directed to EDetails.aspx
2.User who submitted the personal details already should be redirected home.aspx page.
I have 2 tables later i will add more,1.login table,2.employee detailed table.I am using Login control for login page
I am using Version ASP.Net3.5 with MySql database, Code where i am redirecting in login page
Protected Sub Login1_Authenticate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles Login1.Authenticate
If YourValidationFunction(Login1.UserName, Login1.Password) Then
Login1.Visible = False
Session("UserName") = Login1.UserName
Response.Redirect("EDetails.aspx", True)
Else
e.Authenticated = False
End If
End Sub
View 5 Replies
Aug 4, 2010
Is there a way to get the page that the user has come from on my own site 100% of the time, there are no querystrings. so if they have clicked through from homepage or a category page I could get the url of the previous page.
View 2 Replies
Oct 15, 2010
Im using an aspx page as the srcl for an image in the host page to serve a dynamically generated image to the user based on parameters they supply
ie
<img alt="" src="generateimage.aspx" id="imagegen"/></div>
Id like for people only to access the content via default.aspx and not the dynamically generated content generateimage.aspx. Any attempt to browse here directly should be redirected to an error page
View 1 Replies
Feb 9, 2010
I want to allow user to save time ..... How can I manage the time.....
I mean How I will provide interface to user to insert time ...How will I manage in database...
View 1 Replies
Sep 23, 2010
I've got a dynamic page where I'd like to track the time the user spends on it.
View 5 Replies
Apr 1, 2010
In the web.config file i have put some code in so that when users log in they will be re-directed to another part of the website which only registered users can access. for the admin part only the admin can log in and it takes him to the admin section and that works fine. it is only this that is causing me problems.
the code i inserted for which the user needs to be diverted to is:
<location path ="UserLoggedInFindUs.aspx">
<system.web>
<authorization>
<deny users ="?"/>
[Code]....
View 11 Replies
Feb 15, 2011
I have a web app developed using role & membership provider...
this is my web.config file
<authentication mode="Forms">
<forms loginUrl="Forms/LogIn.aspx" name=".ASPXFORMSAUTH" defaultUrl="Forms/main.aspx" timeout="30"></forms>
</authentication>[code]....
So i would like that the page "pag1.aspx" is reached bypassing the "main.aspx" so If I try to digit directly on the server http://localhost/forms/pag1.aspx?C=159 ......correctly appears the login page....and the URL became..
http://localhost/Forms/LogIn.aspx?ReturnUrl=%2fForms%2fpag1.aspx%3fC%3d151&C=159 and after login I can see correctly the page1.aspx . when I try to reach the page from my browser..I digit
http://myserver/forms/pag1.aspx?C=159 .... the login page appears...but the url became..
http://myserver/Forms/main.aspx
and after login I cannot see the page1.aspx....but main.aspx
View 1 Replies
Mar 24, 2011
I have a link containing ID & name on the URL, based on the ID & name i returned image data from DB via asp.net method. The link is not loading the image first time when the link is clicked, when you refresh again the image comes back.
View 1 Replies
Jan 28, 2011
I have a .net web application in a load balanced environment over 3 servers. The load balancing is done with a load balancer. My site is [URL]with serveral javascript files such as [URL]
Is it possible to set it up that when request goes to server1 for [URL] then all javascript, css requests also go to server1, server2 or server3? Is there any web.config configuration that can be put in place to handle this?
View 1 Replies
Feb 1, 2010
I think the title says it all, I have an activeX control, that ask the user if he want's to install it every single time the page loads (Even if it is already installed). Can anyone point me in the right direction? What I have tried so far:
Setting new Guids for the class & interface.
Changing interfaces names & method names.
Changing version number
Uninstalling and re-installing the activeX
View 2 Replies
May 7, 2015
I did a winforms applicaion using C#. I has 'n' number of forms.I like to track application usage time from user login to application exit.
View 1 Replies
Oct 11, 2012
if user login first time in application in how i promot for change password in Asp.Net C#.
View 1 Replies
Feb 23, 2011
i have Using aspnetmembership
i want to know how i can ReNew The Life Time Of Page.User.Identity.UserId Session, , how i can increase the Time Of this session ??
i want this scenario in case when the user LogOn for 15 minutes , then the page refreshed ,then renew the TimeOut Of Session by adding addtional 15 minutes and so on
note that im using Page.User.Identity.UserId Session
View 2 Replies
May 7, 2015
I have hyperlink in page
<asp:HyperLink ID="HyperLink1" runat="server" class="lblMenuMessage" NavigateUrl="~/Admin/صندوق-پیام.aspx">صندوق پیام</asp:HyperLink>
and css
.lblMenuMessage
{
float:right;
text-align:right;
width:150px;
margin:0 12px 0 0;
color:white;
text-decoration:none;
}
and I want change it's color in behind code so I wrote:
(this.Master.FindControl("HyperLink1") as HtmlGenericControl).Style["color"] = "black";
but below error happen:
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.Source Error:
Line 13:
Line 14: (this.Master.FindControl("ADMenuMessage") as HtmlGenericControl).Style["background-image"] = Page.ResolveUrl("~/Image/ADactivmenu.png");
Line 15: (this.Master.FindControl("HyperLink1") as HtmlGenericControl).Style["color"] = "black";
Line 16: }
Line 17: }
how I can change hyperlink textcolor in behind code?
View 1 Replies
Sep 27, 2010
[Code]....
Now, from one of my ChildPage,I would like to do the following two things:
1.Change the text of the Hyperlink to:"MyHome"
2.Give the Hyperlink Navigate URL as :"SomePage.aspx".
How to do that in C#?
View 5 Replies
Mar 25, 2011
I am creating a webform where a hperlink control is added dynamically and i want to open a link of that hyperlink in a new browser window.
View 4 Replies