Search:

Type: Posts; User: Fishcake

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    7
    Views
    4,959

    VS 2010 Re: Getting Geo Location

    Did you at least try the "Try it yourself" bit? http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_geolocation
  2. Replies
    7
    Views
    4,959

    VS 2010 Re: Getting Geo Location

    Geocoding is getting a location from other known data (Such as an address). However I posted a link that allows you to access the devices GPS location using HTML's geolocation API.

    In the example...
  3. Replies
    7
    Views
    4,959

    VS 2010 Re: Getting Geo Location

    It is possible to get geolocation through a website if you are using HTML 5 using HTML 5's Geolocation API. The user would have to confirm that they allow your webpage to see their location.
  4. Replies
    1
    Views
    1,261

    Re: Nlog

    Are you certain you are attempting to write any logs?

    Perhaps your log level is set to only log errors and you haven't encountered any?
  5. Replies
    3
    Views
    1,351

    Re: Asp.net web host

    Can you make your question a little bit more specific?
  6. Thread: get client IP

    by Fishcake
    Replies
    6
    Views
    2,269

    VS 2008 Re: get client IP

    As I said you'll need to make the request on a seperate machine to get the clients IP address.

    Do all the machines on your network have fixed IP addresses? If not lots of users won't be able to...
  7. Thread: get client IP

    by Fishcake
    Replies
    6
    Views
    2,269

    VS 2008 Re: get client IP

    See this article regarding getting an IPv4 address.

    However you may need to deploy your website because whilst you are developing your request will always be coming from localhost.

    What do you...
  8. Thread: get client IP

    by Fishcake
    Replies
    6
    Views
    2,269

    VS 2008 Re: get client IP

    I don't think you have a problem here. ::1 is simply localhost in IPv6 form. What would have been 127.0.0.1 in IPv4.

    You are just viewing your page from the same machine it is hosted on.

    More...
  9. VS 2010 Re: How to remove URL Page footer via my web application

    What appears on a printed page is entirely controlled by the browser (and so it should it be).

    You might be able to do it using an ActiveX control (but this is pretty horrible). IMO generating a...
  10. Replies
    7
    Views
    1,500

    Re: get PC username

    Are you using Active Directory for authentication on the network?
  11. Replies
    4
    Views
    1,133

    Re: Getting this error on a Javascript?

    Is this because "uplDispositionDocuments" is a server side control?

    If so, it will not have the same ID when rendered on the client. You would need to generate the script to user...
  12. Replies
    5
    Views
    1,850

    Re: how to display excel live on website

    @etheer it normally helps to have a crack at something yourself and then come here to ask for help when you get stuck. You are unlikely to find someone willing to just write your solution for you.
  13. Replies
    5
    Views
    1,850

    Re: how to display excel live on website

    However you should probably look at working out what you are trying to achieve as there is almost certainly a better solution.

    But it would be possible to use Excel as a datasource within ASP.net...
  14. Replies
    5
    Views
    1,651

    Re: Difference between ASP and ASP.Net?

    However, unless your site is incredibly simple this isn't going to be easy to achieve. You will have to consider the implications of maintaining session across both applications. How will you...
  15. Replies
    7
    Views
    1,499

    Re: Silverlight and Flash differences

    There are pros and cons of all of them and none of them should be immediately dis-regarded.

    My company currently makes products based on HTML5 and Silverlight and I've worked with Flash in the...
  16. Replies
    2
    Views
    1,123

    Re: Dropdown issue??

    As a pure guess without seeing any code....

    Are you populating the dropdownlist on page_load? If so do you check if the request is a post back (using Page.IsPostBack).

    If this is the case then...
  17. VS 2008 Re: Invalid character in a Base-64 string - help!

    Hi,

    Ultimately what are you trying to achieve here?

    Does the url you are using point directly to an image?

    In the code below
    Dim b As Byte() = Convert.FromBase64String(content)would you...
  18. Re: Multiple ScriptManager.RegisterStartupScript Issue

    A couple of things...

    1. You should give them different keys (you have both as FF) as this is supposed to be unique (See description here)
    2. You shouldn't hard-code the ID of the controls as you...
  19. Replies
    3
    Views
    1,556

    VS 2008 Re: Auto login windows app to asp.net web page

    Is this a windows application that a user will be using or an application that will be running unattended?
  20. Re: Getting Error accessing/opening Database?

    Where is the SQL server? Are you able to connect through Management studio using the same credentials?

    Here's a link regarding enabling remote connections
  21. Replies
    2
    Views
    616

    VS 2010 Re: credit card validation

    What have you tried so far?

    Maybe Google will help
  22. Replies
    3
    Views
    782

    Re: Paste data from different WBs

    You've already posted this once before on this thread called smartie

    Saptor's response is still valid. What does this have to do with asp.net?

    You should ask a moderator to move this to a...
  23. Replies
    8
    Views
    1,879

    Re: required - VB.net code for

    I gave you a link to the page that I used to convert it please feel free to do the same.

    The error you have is pretty descriptive, the excel file is exclusively locked or your program doesn't have...
  24. Replies
    8
    Views
    1,879

    Re: required - VB.net code for

    Using http://www.developerfusion.com/tools/convert/csharp-to-vb/


    Imports System.Data
    Imports System.Data.OleDb
    Imports System.Data.SqlClient
    Imports System.IO
    Imports System.Configuration...
  25. Replies
    8
    Views
    1,879

    Re: required - VB.net code for

    Krishnaoptif - What have you tried that hasn't worked? Maybe we could help you get it working if we knew what you'd tried and what errors you were getting.
  26. VS 2010 Re: Using a 'Namespace' in ASP.net app

    In that case check where you are declaring the namespace, it cannot be declared inside a class but it is ok to nest namespaces.

    Make sure the namespace is declared directly after your import...
  27. VS 2010 Re: Using a 'Namespace' in ASP.net app

    What is the error you get, if you get an error it's always useful to post it.

    As for the namespace it is just an a method of organisation. See this description of namespaces

    You can name the...
  28. Replies
    7
    Views
    5,552

    VS 2008 Re: Read/open PDF file on remote server

    Ssingh. The problem is that this code
    System.Diagnostics.Process.Start(Path) is running on the server. This is why it works locally as your dev machine IS the server.

    Once you have deployed that...
  29. Re: make footer stay on bottom if content does not fill screen.

    The page you linked to contains the following:

    Although it may be the case it isn't clear from the code you posted that you have implemented this.

    An easier solution may be to start with the...
  30. Replies
    2
    Views
    1,058

    Re: VB.net 2005 to 2008 Client Script Issue

    Hi and welcome to VBF!

    This is because there is no JavaScript type which is why you are getting the TypeLoadException.

    GetType with a string parameter would be used as follows ...
  31. Replies
    3
    Views
    884

    Re: Conditional stylesheet?

    Is it just the header image that needs to change or are there other styles that should be specific to every user.

    Roughly how many users are we talking about?
  32. Replies
    2
    Views
    599

    Re: corkman

    More detail is required.

    What would you expect to be displayed client side? An image tag with no src? or no image tag at all?
  33. Replies
    11
    Views
    3,132

    VS 2010 Re: Radiobuttonlist reverts from selected item

    You shouldn't use a MsgBox in asp.net as it is a winforms control and will not behave the way you expect it to. You may be seeing it on your development machine as you are the host but once your app...
  34. VS 2008 Re: Hi guys I'm trying to send a bunch of looped records from DB to javascript array

    In this section here:


    foreach (DataRow r in tbl.Rows)
    {
    // bypass empty rows
    if (r["msg_Latitude"].ToString().Trim().Length == 0)
    ...
  35. Replies
    8
    Views
    1,400

    VS 2008 Re: Export To Excel

    With this line Process.Start("Commission.xls") you are trying to start a process on the web server. This works fine locally as your development machine IS the webserver.

    What are you trying to...
  36. Replies
    5
    Views
    1,872

    VS 2008 Re: Facebook Style website ideas

    It's hard to give you an answer on this. Have you tried something but gotten stuck?

    From what I know of BigPipe it was created by Facebook software developers to speed up load time of Facebook.
    ...
  37. Replies
    5
    Views
    958

    VS 2010 Re: 3rd party CMS

    When considering a CMS it really depends on what the requirements are.

    Some may be very easy for the end user to use and be perfect for a simple brochureware website whilst others may be less easy...
  38. Replies
    4
    Views
    1,036

    VS 2008 Re: Facebook Integrated into Website

    @Nightwalker there's lots you can do without violating the terms of service and Facebook provides API to do just this.

    Maybe something like the Facebook C# SDK would help get you started?
  39. Re: Textbox.text not Becoming Visible

    Not sure if your code is complete but where is the value of IncentDescription coming from?

    Also is the code actually firing? If not maybe you need to set

    AutopostBack="True" on the...
  40. Replies
    6
    Views
    4,024

    Re: Repeater content limits?

    Where is the bulk of the 11Mb? It is quite possibly mostly in ViewState and disabling ViewState where it isn't needed could provide you with a speed increase.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width