On our local dev server, the web services we created list both SOAP and HTTP Post options. However on the production server only SOAP is being listed.
Is there some explicit setting that needs to be made for remote servers to enable HTTP Post? I had thought it was on by default unless you explicitly turned it off.
This is ASP.NET 2.0...
I need to design a web control which includes a poll, but also some images (image controls).
If I add the image controls to the web control, how can I edit these image controls? I need a web control with polls and images but the ability to edit the source of the image through properties (e.g. WebControl1.Image1.source = "";).
Thanks
...
I have a Repeater that contains a Table. I want to hide the some tablecells of the table in repeater item template
Here is the ASPX source code:
<ItemTemplate>
<table style="width: 100%" align="center">
<tr>
<td style="width: 60px;" align="center">
<img src="upload/companylogo/<%# Eval("companylogo") %>" />
<...
Well here is my problem: I have a table with an iframe in the first cell and then some rows below I have some textboxes and buttons. But as long as the iframe is on the page the buttons and textboxes do not show up.
What am I doing wrong?
<table>
<tr>
<td>
<Iframe/>
</td>
</tr>
<tr>
<td>
<input type="password">
</td>
</tr>
</table>
t...
I've been thinking recently about what I do daily at work. We're working with ASP.NET and WebForms. The most of the activities include using already implemented functionality of the wrapper (or framework). I almost never come across technology things, meaning ASP.NET techniques, HTML/CSS etc. The framework was designed long before I came...
I have an aspx page that will display a number of locations in a GridView, and want to add a map with markers for each of the locations.
The page will have controls to filter the list, and will probably work by setting the FilterExpression property of the datasource. (Other alternatives welcome)
What is the best way to synchronize the ...
I need to access a third party application that requires a JKS Certificate (which I have).
My client application is an ASP.NET one. How do I go about this?
(I would have liked to provide more information, but unfortunately I have none!)
...
What are the limitations of asp.net dynamic data?
What is not possible to do in dynamic data, so that you have to use web forms?
...
Hi,
I have one asp.net Ajax Login using webservices. In this login i call the loogout() client side from hyperlink:
Sys.Services.AuthenticationService.logout(null,onLogoutCompleted,null,null);
return false;
My Webservice make :
[WebMethod]
public void Logout()
{
FormsAuthentication.SignOut();
}
logout work but my page make one...
I have an .aspx page setup. I have a lot of placeholders that need to be replaced. First name, last name, city, state, etc, etc. How do I go about doing this in an efficient manner?
Drop a bunch of...
<asp:Label runat="server" id="Label_FirstName" Text="" />
...everywhere?
Or is there a way to use the data binding syntax in the n...
Dear Techies
I have an ASP.NET web application where i am having multiple subrirectories in the root folder.in my root web.config, i have sessionMode as "StateServer" . So in one page of my subdirectory, i am not able to do serialization. If i change the SessionMode method to "InProc" , it will work fine. I want to maintain the web.conf...
trying to add a prefix before bound field
<label><input type="radio" name="rbGroup" value='r<%#((Type)Container.DataItem).ID %>'/><%# ((Type)Container.DataItem).Action %></label>
but it's putting r next to the button. I want rID
...
With the help of you guys, I have created an object that is similiar to the recordset in classic asp.
public class RecordSet: List<Dictionary<string, object>>
{
}
So I can access the data like:
RecordSet rs = new RecordSet();
rs[rowID]["columnName"];
How can I get access like this also, i.e. ordinal referece:
rs[rowId][2];
Ple...
How do i bind a regular asp.net dropdownlist to an enum?
...
Need to dynamically package some files into a .zip to create a SCORM package, anyone know how this can be done using code? Is it possible to build the folder structure dynamically inside of the .zip as well?
...
Hi,
I have an ASP.NET(2.0 C#) Web application, and I wanted to know how to do an action once the user moves to another page or leaves the application.
Is there a method like page_load is for when the user enters the page, except this one is for exiting the page?
Thanks
...
In a repeater is it possible to have a field only show once and then again if it changes?
What I want it to look like
Audio
- Thing
- Thing
- Thing
Video
- thing
- thing
Picture
- thing
They are going to be ordered by Type either audio video picture but I don't want to have repeat Audio Video Picture as well. Thanks
...
I have a ascx that looks like this:
<UpdatePanel Parent mode = Conditional>
<UpdatePanel1 mode = Conditional>
//A form here with textboxes, etc
//A repeater here with a linkbutton that causes a postback
</UpdatePanel1>
</UpdatePanel Parent>
In the OnItemCommand of the repeater, I get the form values and set them. It work...
I have the following (sample)code to filter search results from a LLBLGen data source:
IPredicateExpression firstFilter = new PredicateExpression();
firstFilter.Add(new FieldLikePredicate(CustomerFields.FirstName, null, txtSearchFirst.Text.Trim() + "%"));
llbldsCustomer.FilterToUser = firstFilter;
llbldsCustomer.DataBind();
gridview1.Da...
I have a Page that is associated with a master page. In the master page, I put the css links in the head section and I put the jquery script tag and the script that contains the function to toggle the grid, but when it is not working. Looks like it is not even calling showhide when I click on an item.
Here is a snippet of the master p...