I have a web application that I wrote that uses a web service I also wrote. Now I have to move the application and web service to test, then eventually to production.
What is the right way to do this? My assumption is when I move the application to test I will need to change url of the...
Set the checkbox contorls enabled property to true or false. If you want it to set it when some other controls event fires you may need to set Autopostback=true on that control.
Can you validate the value on the way in? You really shouldn't allow the value to make it this far if possible. try - catch can take care of any thing that you don't catch with validation. I'm sure given a few mins we could come up with a way to check it.
Wow, that's the only way to receive a file? Ok, so I am going to make a method the receives a string, parse it and send the results back in a DataSet that way the consumer will get an XML file they can parse.
I guess I will have to tell the consumer to read the text file into a string var then...
Thanks the tutorials were a big help. I just did a web service that passes a string around and one that passes a dataset back. But what I really want is escaping me. I need to receive a text file from the consumer. What type am I receiving in my method parameters for the text file? I tried a...
I've never done a webservice before. Just looking for tutorials or sites that have information that can help with the task below...
I need to build a web service that can receive a plain fixed len text file and return a response in an XML file.
My customers should be able to build a web page...
Hi anyone know how I can get to the cell: "<td><%# DataBinder.Eval(Container.DataItem, "USL")%></td>" in the below code to change it? For example:
This is how deep I have to go in the DataGrid (highlighted in blue)...
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table>
<tr>
<td><%#...
Thanks, how can I get to the cell I need to change it? For example (dif are of code same type of issue)...
This is how deep I have to go in the DataGrid (highlighted in blue)...
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table>
<tr>
<td><%# DataBinder.Eval(Container.DataItem...
I have a ASP.Net DataGrid with edit columns. I bring in a list of users with info like account number, custid etc. Everything works fine.
Now I want to add an edit column that contains a multiple select listbox. When the listbox loads I want to select the appropriate items for the user. Anyone...
I have an older product from Sybase that I need to fire off from a c# application. Normally the exe would be run from dos with some args passed in. How can I fire off this program from C#? I haven't found any docs on the subject. I'm sure there must be someone else that has had to deal with...
I have a listbox that I populate it from the database; then on submit check for selected items. It always returns false (not selected). However if I hardcode the values into the listbox I do find the correct selected values.
Any idea why this would be?
private void Page_Load(object sender...
Give us some code, also check the name of the button, make sure it's not named "submit" (had a friend do that before drove me nuts until I relized the name was submit).
I have a web page that when I click on a control the property window is empty. Not only that but when I double click a control or page in design view the event is not created in the code behind, in fact nothing happens. Seems like the page is not attached to the code-behind, however in the...
I thought it would be nice to setup a database "accessor" (DBA) class where you could instantiate it, provide a connection string and use it's methods to do all of the database tricks. This is a sample of what I have. I'll describe the problem below...
This is a method that returns a datareader...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.