asp.net

How to use FMS with C# ASP.NET

Hi, I actually need a way to work with a Flash media Server using c# and asp.net. And I don't have a clue about how to accomplish that I've been looking for documentation but haven't found anything worth so far. Thx in advance. Edit: What I want is to edit a Shared Object in FMS from Asp.net. ...

Access application settings from ASP.Net MVC View

In an ASP.Net MVC 1.0 applicati0n, is it possible to access the application settings (MyProject.Properties.Settings.Default.*) from inside my View (aspx page)? I've tried but the intellisense and compiler don't like it. It says that it is inaccesible due to the protection level. ...

.NET Google Calendar API Sort Events by Date

I have been reading the docs and playing with different EventQuery parameters for days now. I am using C# .NET with google's .net api to get the events from a public calendar I set up. I can get the events from the api just fine but I can't get it to give me the next upcoming events by date. My calendar has mixed recurrence events wit...

how to tell when scroll bar is at bottom of an asp.net multiline text box

Hello, I am working on an asp.net page and I have a multiline text box that displays some text. I want the user to have to scroll all the way to the bottom before I display a checkbox for them to continue. My question is how can you tell if the scroll bar is at the bottom? ...

Disable Validator but Validator Callout still shows and causes validation

I'm trying to validate that a certain increment of a product was entered in the product qty textbox that is in a repeater. The problem is that the increment is different for every product, so I need that as a variable for each call to validate it (which I don't think you can do with a custom validator), and I need it client side with a ...

Adding a variable to a ASP.NET CustomValidator

I need to have a custom validator that can in some way incorporate a custom variable when calling the client-side javascript validation. This validator is used in a repeater, and every item in the repeater needs to use the custom validator, but validating against its own variable. Is this possible and how can I do it? Example, I nee...

Use CouchDB with .NET

Can .NET (managed code) read and write to CouchDB? I would like to build a part of my project that does document management using CouchDB ...

WebService: Difference between my pc and server

I have a bug where special characters (danish 'ø' in this case) are shown correctly when running locally, but wrong when the code runs on a server (I get a pipe '|'). I was trying to solve this today, but I did not have access to the server, other than updating the code files. I will limited access monday, so I can at least write inter...

OpenID Integration

Does anyone know of an ASP.NET guide to implementing OpenID and what information can be returned by the OpenID provider? I understand you can get the email address but if someone logs in with their Google OpenID can you get access to their addresses? ...

How can I hide the SiteMapPath root node on home page?

How can I hide the root node in a SiteMapPath control when the user is on the root node page? For example, my breadcrumb trail on a child page is: Home > Products > Hammers > Ball Peen which is fine. But when the user is on the Home page, the SiteMapPath control displays Home which is useless clutter. I want to suppress displ...

When does a page get rendered in ASP.NET?

I'm writing am ASP.NET/C# project, it's a simple blog page with commnents. Problem I'm having when button click you see comments load original blogload plus blogs and comments, trying to get it to load blog/comment selected only. If I try not to load blog in page_load or have it only do if not postback nothing is displayed. Any help wou...

Some doubts on setting an C#/Asp.Net 3.5 application automatic builder server

I want to set my server to automatically build my application upon commit on SVN repo, then deploy on a test/homologation server. What I planning to do: install a build tool (Nant? use MSBuild?); create a simple script and set a hook to SVN that starts the process of building and deploy. To do that, what I need to install on my serv...

Databinding of RadioButtonList using SelectedValue...possible??

I am databinding a GridView to an object datasource. The gridview contains a TemplateField which contains a RadioButtonList with ListItems defined inline. I want to be able to databind the SelectedValue of the RadioButtonList to the same underlying table as the other grid columns, but it doesn't work! Do I have my syntax wrong, or is...

How can I assign a callback function to an asp:HyperlinkField?

I want people to click on a link (generated from an asp:HyperlinkField) and have it call a method on the server rather than redirect the user somewhere. Anyone know how to do this? Thanks, Matt ...

ASP.Net .Config : Saving Custom Config Sections

I create new config section for my web app. How could i save it when i modified runtime? ...

Getting values from viewstate using JQuery?

Is it possible to get a particular value out of viewstate using JQuery.... I'm working on a custom control. It uses jquery, embedded into the control itself to manipulate the value in a text box... I need to implement a minimum and maximum values... the properties are set up in the control, and are stored in viewstate... Instead of usi...

ASP.NET how to tell if div is scrolled to the bottom.

I have no idea how to do this and I need assistance please. I am using asp.net and I have a div with overflow:auto set. The div shows terms and agreements. I also have a asp.net checkbox control with visible set to "false". What I want is a way to make checkbox visible = "true" only after the user scrolls all the way to the bottom. I was...

How to add new column to asp.net gridview where columns are autogenerated?

How to add new hyperlink column to an asp.net gridview where columns are autogenerated? The columns are not predefined in the gridview. ...

How does one receive and post text messages on a website, a la Twitter?

I've looked around at pretty much all the SMS posts here on SO and the best answer I've come up with so far is ZeepMobile. The only problem is, they're "in beta" and aren't readily accepting users. Is there a workaround for this, maybe receiving an email via text (kind of like how TwitPic does it?) somehow and parsing it? Basically all ...

ASP .NET - RequiredFieldValidator creates space after textbox

I have a DetailsView with a number of textboxes setup with RequiredFieldValidators. The code for both is: <InsertItemTemplate> <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("date_time") %>'></asp:TextBox> <asp:RequiredFieldValidator ID="RequiredFieldValidator11" runat="server" ControlToVal...