In my project I am using a repeater to display articles from a database. I would like to add a link button that calls an asp page and the ID for example the link for article ID "1" would be articles.aspx?id=1
I'm trying to build a link to an external website using some properties of my model class in my view page, e.g. I want it to render as something like -[URL]where post-id would be pulled from the model (I'm using a strongly typed view model here - I can't use ViewData as there's a list of items being pulled back all of which need seperate links).I tried doing < a href="<% model.PermaLink(); %>">, where PermaLink is just some string, however the value doesn't get picked up.If I try < a href="<%= model.PermaLink %>">, I get an error - CS1502: The best overloaded method match for 'System.IO.TextWriter.Write(char)' has some invalid argumentsIs there any way to do this? I tried adding the runat="server" attribute, however this just linked to my local site and controller/model actions.
1. I need to load a user control on link click event of a link button during postback of aspx page.
2. On button click event of a save button on that aspx page, I need to read the selected values from that user control on further postback.
If I write the loadcontrol code in link_click event, the control is not recognized at all in the button_click event. When I shift it to page_init and execute only during not postback, the user control loads with default values.
After submitting a form, the user is presented with a link to a pdf document. The link is straight to the document, it is not streamed.
If the user right-clicks and chooses 'save link as,' the document saves and opens fine. However, if the user just clicks on the link, the browser takes a very long time to respond (I'm going to guess it's 3 minutes) and then adobe reader gives the following error:
"the file is damaged and could not be repaired"
This is in Chrome v5, ASP.NET 3.5 and the link is returned inside an UpdatePanel.
For example, i browse the web page in browser, at first, i clink "home", home page is show out, then i click the "Contact us", then the "contact us" web page is showing out, BUT the problem is come out when i try to click the home page again, the home page doesn't come out and still at the contact us page...any1 know WHY?Thank you for helping...
Created a asp page using vbscript to calculate a value (works fine). I'd like to return the value as a clickable link, which would obviously redirect the user somewhere else.
In my gridview i am returning values from database in which 'filelocation' is containing location of pages over my server and i want to use coustom linkbutton in templete field to raise a event and set session variable and then redirect to that page .
My question is how to get value fron 'filelocation' coloum in gried view when a linkbutton in clicked and onclick is fired and also set session value at taht point.
I am trying to create in a partial view a Logout link. What i have now:
[Code]....
and my Html Action link from the partial view
[Code]....
When i press the logout link, it redirects me to [URL], where i have no view, so i get a "page not found" error. How can i make the logout link to redirect to home page?
I am creating a web application using ASP.NET MVC 2 using the C# language. I have programmed in HTML, CSS, and PHP for several years and i am very new to ASP.NET. The part that i am having trouble with is the image gallery.The setup: i have a link on the navigation bar that goes to a "Galleries" page. This page will show a list of galleries. Each gallery has a title, an image, and a description. All of this information is pulled from an XML file. I'm using the XML file like a database. I wanted to use this method so that i could easily update the list of galleries and have the updated XML file automatically be reflected by the website. Now, the galleries should link to an "Images" page. This page will display a list of images within the gallery based on what gallery was selected. This page will also pull from an XML file.The problem: I cannot seem to attach a dynamic link to the image? I am also stuck and not sure how i get the correct View to display? I know i need to do something with the controllers and models, right? I have some code if needed?
The homepage of an ASP.NET Web site that I am servicing contains a link to an ApplicationsGroupList, listing all of its applications. Clicking this link takes the user to an Application Group page, where specific applications reside under this particular group.
In C#, how can I create the ability for an enduser to link directly to an application group page by passing the Application Group name in the querystring?
I need to link two tables have the same fields but in different DB using visual studio 2010 and ASP.NET application? I'm using a grid view to show the details of each table.
So when panel2 is clicked i want to hide it, display panel1, and have the video start playing. I know how to hide/display the panels, but I dont know how to program a "click".