I have 2 hyperlinks on an HTML web page which direct to the same page but with different consequences on the target page. I know how to pick up text field values in ASP.NET via HTML post but how to I determine (on the target page) which link was clicked on the source page?
Anyone know how to determine which ImageButton was clicked in a gridview when there are multiple Imagebuttons in a row. I am guessing it's gotta be done in SelectedIndexChanged.
My URL is abc.com/1 here 1 is the dynamic value.If a user clicks on a URL then I want to fetch that Id and pass to my Stored Procedure as parameter and display the data based on the Id to a new aspx page. I cant Use Javascript/Jquery as my Hosted server doesnt supports it.
Have a HyperLink in my GridView that Redirects to a new page. I need to capture a value in a cell, but when the HyperLink is clicked the RowCommand event is not firing.
I have three values:id, Region, LocationI want to pass these values to next page when a hyperlink clicked so that I may use the passed values in next page.The values are coming from querystring from previous page.
I have a div which I am using as a container. In the container I have a hyper link, image and label control. The content is being dynaimcally being created from an access database. I use the hyperlink to load a different page. How can I make it so the user can click anywhere in the Div/Image/Label to activate the hyperlink? Basically I want the end user to be able to launch the new page by clicking anywhere in the div.
I have a panel which is of a fixed size and in the panel I have a hyperlink. How can I make it so the user can click anywhere in the panel to activate the hyperlink click?
how to "discover" hyperlink in some text and convert that hyperlink in html hyperlink with asp.net (or javascript). For example, if a user enter this text:
You found it at [URL]
How can i found and convert in html like :
You found it at <a href='http://www.foo.com'>http....</a>
i had the sql 2008 enterprise and i want to go back to sql server 2005 because in 2008 i created new database but when i did some changes in the table , it gave me an eror that i cant save thins and i need to creat new one if some one know what i'm talking aboutif not i need the sql server installation tutorial i tried by myself but probebly i did it wrong and now i cant connect well to the sql
I used SQL SERVER 2008 R2 express as my web development database and I set its compatibility level to 2005. Unfortunately this database cannot be be attached to SQL server 2005. Are there any other options?
I am trying to work out how to calculate the latency of requests through a web-app (Javascript) to a .net webservice.
Currently I am essentially trying to sync both client and server time, which when hitting the webservice I can look at the offset (which would accurately show the 'up' latency.
The problem is - when you sync the time's, you have to factor in latency for that also. So currently I am timeing the sync request (round trip) and dividing by 2, in an attempt to get the 'up' latency...and then modify the sync accordingly.
This works on the assumption that latency is symmetrical, which it isn't. Does anyone know a procedure that would be able to determine specifically the up/down latency of a JS http request to a .net service? If it needs to involve multiple handshakes thats fine, what ever is as accurate as possible.
I have a web app (ASP.net with VB.net) that will run on one of three web servers. I would like to know, at run time, which web server the app is on. How can I determine which web server the app is on?
How can I determine where a user came from when they land on my webpage.Did they come from a google link?Did they user a favorites link?Did they type in the url?
I have a bit of xml file named Sample.xml which is shown below
[Code]....
i have button named submit(button1).If i click that button i need to display the count in a text box named textBox1, means How many PartitionName="AIX" is belonging to Type="NIC"
I made some adding of dynamic checkbox and it would be located in the panel. And at the same time the checkbox would be save also in my List(Of Checkbox).
BTW, my checkbox is not the HTML control (if that's how you call it). Now i made some function wherein Im going to get all the state of my checkbox in that particular panel. This is how I do it:
Code:
For Each ctrl As Checkbox In listControl if ctrl.checked = true then ' code here end if Next
Unfortunately nothing happen. So how am I going to check the state of my checkbox. I already test all the checkbox saved in my list(of T) and also tried looping "Me.pnlControl.COntrols"
The page I'm editing had three tabs, each tab contains a diffrent grid view which is populated by a search box with in the tab. Each row in the grid view has a check box. When a print button is pressed all records with a tick in the check box should be printed off. Then page then reloads but some of the content is missing due to the way the page has been coded. This is becuase some of the code is only called when the tab is clicked not on postback. Is there anyway that I change the following code so that it's called after postback? These are the functions that are causing the most problem.. I need them to be loaded for the correct tab on postback.. I can't do it for all three as the code takes forever to run in that case.
I am running an ASP.NET application on an IIS7 server. It has been running fine for a long time, but over the past week or so it has been discarding all users' sessions several times a day. I enabled all of the application pool recycle logging options as described in http://blogs.iis.net/ganekar/archive/2008/12/12/iis-7-0-application-pool-recycles-log-a-event-in-windows-event-log.aspx, but I didn't get anything in my event log.
There are no errors in the event log, and no visible symptoms except that all my users lose their sessions.
Are there any other reasons that IIS would recycle my application pool? Is there any other type of logging that I can enable to find out what is happening?