User Profile

Collapse

Profile Sidebar

Collapse
vstud
vstud
Last Activity: Dec 22 '09, 04:36 PM
Joined: May 17 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • vstud
    started a topic downloading a software update code
    in .NET

    downloading a software update code

    Hello,

    Our company has an application that are installed on our clients computer,
    when the client wants to check for updates he click the update button from his installed application.

    here is the problem:
    the download works fine but it's using a specific i.p. address, which is our webserver. it's hard coded i.p. address like 192.61.80.01
    we would like to make the download more general and use the...
    See more | Go to post

  • VB code that download from website software updates

    Hi all,

    Our company has an application that are installed on our clients computer,
    when the client wants to check for updates he click the update button from his installed application.

    here is the problem: the download works fine but it's using a specific i.p. address, which is our webserver. it's hard coded i.p. address like 192.61.80.01
    we would like to make the download more general and use the url...
    See more | Go to post

  • vstud
    replied to Master page issue (with query-gridview)
    in .NET
    ok, solved it.

    You can't use form fields (in the query wizard) if you are using masterpage,
    since it's not a "page form" anymore. (lacking the form tag).
    See more | Go to post

    Leave a comment:


  • vstud
    started a topic Master page issue (with query-gridview)
    in .NET

    Master page issue (with query-gridview)

    Hi guys,

    I have a simple page with a text box for inserting a name and a gridview below it.
    once the user type the name the gridview displays the matching record that has that name in the database table.
    all works fine so far, however when I've change the page to use a Master page layout the gridview will not display the record. (unless i have a simple select),
    somehow the i believe that the input text box is not...
    See more | Go to post

  • vstud
    started a topic Web deployment
    in .NET

    Web deployment

    Hi guys,

    Any tools you are familiar with that the .net helps with regard web deployment
    our software application package.? Any help is great.

    I'm currently using install shield 8.0 but not very happy with it..

    THanks
    See more | Go to post

  • vstud
    started a topic validation field and re-painting the page
    in .NET

    validation field and re-painting the page

    Hi there,

    I've place a simple ASP 2.0 page with couple of input fields and a submit button.

    The input text fields have validation control associate with them.

    the issue happens when I click the Submit button (the whole page becomes blank and then all) the controls are being re-painted again.

    If I take remove the validations control nothing is being re-painted and all works fine.
    ...
    See more | Go to post

  • vstud
    replied to displaying a date w/o the time trail
    in .NET
    thanks for the reply.

    I'm not sure when it's not working for me when i use it inside the asp page.
    I'm getting an error on the convert or what ever function. for example:

    <asp:AccessData Source ID="AccessDataS ourceID" runat="server" DataFile="c:\as p\trx_DB.mdb"

    OnSelecting="Ac cessDataSourceI D_Selecting" SelectCommand=" SELECT web_trx.order_n umber,...
    See more | Go to post

    Leave a comment:


  • vstud
    started a topic displaying a date w/o the time trail
    in .NET

    displaying a date w/o the time trail

    Hi,

    I'm using the datagrid view to display transactions. (asp .net 2.0),
    one of the bound fields is DateTime type, when displayed on the grid view it shows the full field with it's time stamp i.e. 3/3/2008 12:00:00 AM.

    my question is how can i strip it down and only show the date part it on the grid.

    hope it make sense.

    TIA
    See more | Go to post

  • vstud
    replied to database on a Web server
    in .NET
    This is great, thank you for your effort. I have better grasp now, still it will take me some time to delve into it.
    One quick question: I take it that once the web service is in place, one is able to create the reference to it from vb.net (or c#) and then drop a grid view (for example) on his form and trigger and bind the web service methods ..correct?

    Thank you...
    See more | Go to post

    Leave a comment:


  • vstud
    replied to database on a Web server
    in .NET
    please do post or send me sample code, my experience with web services is thin

    TIA...
    See more | Go to post

    Leave a comment:


  • vstud
    replied to database on a Web server
    in .NET
    sorry, I should be clearer,
    Yes,I'm allowed to add and change things on the webserver, and I already
    implemented some asp pages. I'm just checking my options as I was thinking that I can accomplish the same thing via vb.net and control the security part of the application better ..correct me if I'm wrong..

    Is there a way that i can use, web services and refer to the web service via
    stand alone application on the...
    See more | Go to post

    Leave a comment:


  • vstud
    replied to database on a Web server
    in .NET
    No, i don't want the user to download the databse, they don't need to change any data on the database, just to view info from the different tables (different views).

    I should be able to write a stand alone application ond place it on the weserver,
    but wasn't sure that its something acceptable to do..
    how do the user trigger the executable?
    should he use something like www.myurl.com/myexe.com ?

    ...
    See more | Go to post

    Leave a comment:


  • vstud
    started a topic database on a Web server
    in .NET

    database on a Web server

    Hi huys,

    I need to write an application (vb.net or c# NOT asp pages) that retrieve data from a database (ms access) which resides on our webserver and display it to the client user.

    I'm not sure how to access the database from the client's machine, meaning
    the databse is not on the network but rather on a webserver. How do i connect to retrieve info from a file or d.b. in that case.

    please point...
    See more | Go to post

  • Hi,

    you were correct my IIS was pointing to the previous version, so I've change it to reflect ASP 2.05. Thanks.

    as for the Server.Mappath it's not working for me, here is a snip of it:

    DataFile= server.mappath( "db\EPE_DB.mdb" )

    however if i use the full physical location it's working:
    DataFile= "E:\myapplicati on\host\db\EPE_ DB.mdb")


    I'm...
    See more | Go to post

    Leave a comment:


  • Hi and thank you both for the info and comments.

    i.
    I believe I'm using the AccessDataSourc e and currently that was pointing to my local access d.b. on my local hard drive folder.
    I take it that all i need is to change from DataFile="c:\as p\trx_DB.mdb"
    to DataFile="http\ \:www.mysite.co m\DB\trx_DB.mdb " ... ?

    ( i didn't get a chance to test it yet since my webserver is in the office...
    See more | Go to post

    Leave a comment:


  • vstud
    started a topic deploying my app to our webserver (on win2003 machine)
    in .NET

    deploying my app to our webserver (on win2003 machine)

    Hello,

    I need some begginers help here with the following:

    I developed ASP 2.0 application on my personal machine which is using the
    wwwroot localhost and everything works fine.

    my question is how do I move/transform my asp application to work on our webserver (how do i deploy it ). ?
    to be more specific, in my asp application (using the ms visual studio 2005 ide)
    the query points...
    See more | Go to post

  • vstud
    started a topic Retrieving the next record from dataset
    in .NET

    Retrieving the next record from dataset

    I have windows webserver 2003 with ASP v1.1 (on the IIS 6.0 it's allowed).

    1. How do I install and work with ASP 2.0 as I can't seem to select it from the IIS?

    2. Is my website that was developed using ASP v1.1 will still work properly?

    3. Do I need to pay and install ASP 2.0 or is it considered to be an update?

    Thanks in advance
    See more | Go to post
No activity results to display
Show More
Working...