Search:

Type: Posts; User: token

Page 1 of 4 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    2
    Views
    537

    Help with concepts using Master pages

    I was hoping to get some input on something that I am currently working on.

    I have to develop a website. This website will be managed by a handful of web designers. Now all these designers are...
  2. Replies
    14
    Views
    1,204

    Re: Infopath and .Net

    Could you show me how I would call/launch infopath using an url with the parameters in a querystring? I'm not using infopath 2007 I am using infopath 2003, so my understanding is that I would have...
  3. Replies
    14
    Views
    1,204

    Re: Infopath and .Net

    Sorry RobDog, i should have specified. I have all the pieces already.

    I have a website that lists the contents of the database table, I have the webservice that does the submit and receive and I...
  4. Replies
    14
    Views
    1,204

    Re: Infopath and .Net

    That was a thought to, to have the listings in an infopath template as well and just selecting a record would simply change the view to one that allowed editting of the selected record.

    But...
  5. Replies
    14
    Views
    1,204

    Re: Infopath and .Net

    I am not sure what you mean about document paths.

    This is the way my boss has it envisioned.

    The infopath form receives and submits data to a webservice which in turns stores and retrieves...
  6. Replies
    14
    Views
    1,204

    Re: Infopath and .Net

    I think it is just a simple matter of populating the controls on the the InfoPath form and then running the query.

    The only problem is that I have no idea hoow to do that, but I can figure it...
  7. Replies
    14
    Views
    1,204

    Re: Infopath and .Net

    Thanks RobDog, that's good. I needed the code to launch InfoPath and it works for me. But how do I send InfoPath something, a parameter I guess, to call the webservice to retrieve a specific record...
  8. Replies
    3
    Views
    552

    Re: Web Service Problem

    Can you put up some of your code from the client calling the webservice.

    It could be something as simple as you missing the 'New' keyword when creating an object of the webservice. At least i...
  9. Replies
    14
    Views
    1,204

    Infopath and .Net

    I was hoping someone could help me.

    I have an infopath form that submits and retrieves data using a webservice that in turns stores all information in a SQL Server database.

    Now, i am to build...
  10. Replies
    2
    Views
    875

    Help swapping image maps

    For some reason I have no idea what I am doing.

    My problem is that I have 3 image maps. When the user rolls over a button I want the corresponding image map to appear and hide the other one and...
  11. Replies
    3
    Views
    546

    Re: DG sorting. is there an easier way?

    dim dvSorted as dataview
    dvSorted = new Dataview(datasetTest.Tables(0))
    dvSorted.Sort = "FirstName ASC"

    Something like that anyways.

    Hope that helps.
  12. Replies
    3
    Views
    546

    Re: DG sorting. is there an easier way?

    What I've done is that I attach a dataview to the datagrid instead of a dataset or datatable.

    It's a lot easier to filter and sort because it has corresponding methods called 'Filter' and 'Sort'....
  13. Re: Passing values between 2 open pages (eg. parent and dialog)

    Alright, thanks mendhak, just thought I would check to see if there was a better way.
  14. Passing values between 2 open pages (eg. parent and dialog)

    Can someone tell me if there is another way of passing variables back and forth between 2 open pages (such as in the case of a dialog window) without using javascript.

    I have done it before...
  15. Replies
    2
    Views
    645

    Re: Initializing a combobox to a value.

    Thanks FishCake.

    I was doing it that way before. I was just making sure there wasn't an obvious easier way to do it that I was overlooking. I dont feel so crazy now.

    Thanks for the help. ...
  16. Replies
    2
    Views
    645

    Initializing a combobox to a value.

    I know this is kind of dumb but, I never really looked into the best way of setting a combobox to a value upon load.

    The example is that a user fills out a form that has comboboxes that allow them...
  17. Replies
    1
    Views
    607

    Adding record to typed dataset

    I have a typed dataset that is in a Data Access Layer and would like to add a record to it from a web form. My problem is that I have no idea how to do that.

    The form does not know the schema of...
  18. Replies
    0
    Views
    536

    Upon double-click, jump to code-behind stub

    A simple question for everyone, hopefully someone knows the answer.

    I somehow disabled a small function that I loved. When in the form designer when you double-click on a control, such as a...
  19. Re: Which files do I upload on server??

    Sorry, not the .vb files. No to the .vb files, leave them in development, I believe all code is packaged in the .dll that can be found in the bin directory.
  20. Replies
    2
    Views
    3,747

    Re: Reading a datareader more than once.

    I see, so you can't read a datareader twice, so what you did was drop the values into a datatable to be used over and over after the function.

    Thanks for the help.
  21. Thread: Radiobuttonlist

    by token
    Replies
    2
    Views
    392

    Re: Radiobuttonlist

    Me.ServiceLevel.SelectedItem.Text will give you the item selected.
    Me.ServiceLevel.SelectedValue will give you the value of the selected item.

    Hope this helps.
  22. Re: Which files do I upload on server??

    Someone may be able to explain this a lot better than I can but you would copy everything from your virutal directory of your web application on your development machine to the virtual directory on...
  23. Replies
    2
    Views
    3,747

    Reading a datareader more than once.

    Hey everyone.

    I have a sqlclient datareader. I want to read it once and later comeback and read it again using the values elsewhere.

    But it doesn't seem to allow me to do that. The second...
  24. Replies
    6
    Views
    779

    Re: Abstracting code from code-behind

    I'm glad, you share my pain too. Though I have been working with it for 3 years now.

    Thank god we're moving away from it now.
  25. Replies
    6
    Views
    779

    Re: Abstracting code from code-behind

    You're right mendhak, i guess i was just hoping for an easier way to do this. I guess I am just used to Lotus Notes where you can pass a whole document to another class.

    Thanks for your help.
  26. Replies
    6
    Views
    779

    Re: Abstracting code from code-behind

    So I would still have to send each and every value from the controls to the function.

    I was hoping there would be something simple I can send, like the whole page as an example, I know that can't...
  27. Replies
    6
    Views
    779

    Abstracting code from code-behind

    I was hoping someone could help me.

    I am looking to abstract a lot of the code from my webform to a class.
    But I was wondering how would I be able to access or pass all the values from the...
  28. Replies
    1
    Views
    458

    Reading text from a text file

    Can someone please tell me how retrieve all the text from a text file.

    I want to try something from class ASP where you create a text file with placeholders and replace all of them with...
  29. Replies
    0
    Views
    408

    Error when debugging on new machine

    I recently received a new laptop to do my work. I have spent the last couple of days getting my new laptop up to speed in terms of settings, applications, etc.

    On my old laptop I had Visual...
  30. Replies
    2
    Views
    535

    Re: Retrieving opening page's form name

    Thanks, I will definetly give this a try. The other guy I work with here, suggested something along those lines, but I had no idea how to do it.

    Thanks for your help.
  31. Replies
    2
    Views
    535

    Retrieving opening page's form name

    I was hoping someone could help me with a problem I am having.

    I am using Javascript to pass values back from a popup window to the calling webpage like so:
    ...
  32. Re: How do you receive xml web service responses?

    Thanks again wild_bill, I figured it out.

    I can return an array of structures from the web service. And to receive it, I didnt realize that in the proxy created when you consume the webservice...
  33. Re: How do you receive xml web service responses?

    Thanks wild_bill, I dont know why that didnt occur to me.

    I was just wondering though:
    Is there a way to convert an array of structures to an xml document? Or maybe how to just receive an array...
  34. Re: How do you receive xml web service responses?

    I was actually wondering what would the using app of the webservice have to receive an xml response.

    In my service i do have a function GetMeSomeValues, and it works just fine when the return...
  35. How do you receive xml web service responses?

    I am quite new to working with web services.

    I just recently created a web service that returns an xml document. All the xml serialization is done by .net, all i really did was create an array...
  36. Replies
    0
    Views
    414

    Project templates in Visual Basic .net???

    I am hoping someone would have some ideas of how I can go about creating web project templates for other users to use.

    What I mean is that other developers could open these templates and...
  37. Replies
    11
    Views
    1,125

    Re: Submit button action order?

    You were right veryjonny, I was quite wrong about the whole thing. The page_load will run before the button_click. I am still unsure as to why, but this is how it goes.

    It turns out my problem...
  38. Replies
    11
    Views
    1,125

    Re: Submit button action order?

    I had the:

    If not page.ispostback
    'code to fill my comboboxes
    end if

    I forgot the 'not' in my last post.

    but thats not the problem,
  39. Replies
    11
    Views
    1,125

    Re: Submit button action order?

    You are right, I should detail my scenario a lot more clearly.

    The exact scenario is:

    1. user opens a form.
    2. to enter some of the information requires a popup window, that is tied to another...
  40. Replies
    11
    Views
    1,125

    Re: Submit button action order?

    That's no good if the page_load does fire before the button_click, I was certain that it wasn't doing that before, because I have code in the button click event that requires information from HTML...
Results 1 to 40 of 149
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width