Tagged Questions
2
votes
1answer
548 views
how to retrieve data from my database (formview) and multiply it, visual studio
I am using Visual Studio 2010, and I created a site (.aspx).
I have an sql database (.mdf file) and I want to retrieve ONLY one value of the table and multiply it with a specific number.
I have used ...
2
votes
3answers
652 views
Storing and retrieving images with MVC and Sql Server
I am designing an prototyping an app the needs to store images, similar to facebook. This will be a public facing site and I am not sure how many users I will end up with but what I am looking for is ...
0
votes
1answer
276 views
Cannot access the control id from a repeater's item template
Friends,
I have a linkbutton inside a repeater's item templete and i want to access the link buttons text on the next page.I set the postbackurl to the next page.But when i use the ...
0
votes
1answer
281 views
ASP.NET repeater item retrieve and change property
I have the following <asp:repeater>:
<asp:Repeater ID="Repeater1" runat="server" DataSource='<%# Bind("Photos") %>' OnItemCreated="Repeater1_itemCreated" >
<ItemTemplate>
...
0
votes
3answers
642 views
ASP.NET/PHP/HTML: Retrieving HTML source code from a website
Is it possible to retrieve/get the html source code of a certain website and use it in a ASP.NET web application to display them? (without using the copy-paste, of course)
I want my ASP.NET web ...
0
votes
1answer
158 views
Object does not retrieves from viewstate
I am about to gone mad
why? why? why?
protected void Page_Load(object sender, EventArgs e)
{
AttachedPartnersViewState vs = ViewState[SessionVariables.Company_AttachedPartnersViewState] ...
0
votes
4answers
2k views
Asp.net retrieve domain url
I want to retrieve my domain url in asp.net.
for example, if my url = http://www.mydomain.com/blog/currentPage.aspx?id=156, I just want the part: http://www.mydomain.com/blog/
can anyone help me ...