Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
B

bryan paling

@bryan paling
About
Posts
13
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ASP Error on local site : Expected Error ';'
    B bryan paling

    the address was on the page where it is blank. http://localhost/sitename/default.aspx <--- this one. It should redirect to this page http://localhost/sitename/pages/default.aspx yeah.. i'm really pissed off looking where would the error be... it should redirect on the first place. During the installation, I installed the .Net Framework first than the IIS? does it makes sense that it IIS should have been installed first than the Framework? regards, bryan

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help html sysadmin tools workspace

  • ASP Error on local site : Expected Error ';'
    B bryan paling

    hi John, It doesn't work either... i really hate doing this code without using codebehind... i'm just debugging this intranet... regards bryan

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help html sysadmin tools workspace

  • ASP Error on local site : Expected Error ';'
    B bryan paling

    Hi Sandeep, The error sign disappeared but it did not redirect to the default page inside the "pages" folder. regards bryan

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help html sysadmin tools workspace

  • ASP Error on local site : Expected Error ';'
    B bryan paling

    Need help on this: I just formatted my pc and installed all needed to run an intranet. But when I started to setup my old intranet site, and run the default page, appeared on my default page. It's a redirection to another page but the default page was totally blank and an error appeared on the bottom left corner saying "Error: Expected ';'" but the line errors are not found on the code: The code of the default page is below: I hate this because i really don't do coding on the format. <%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %> <%@ import Namespace="System.Data" %> <%@ import Namespace="System.Data.OleDb" %> <script runat="server"> Sub Page_Load(Sender as Object, E as EventArgs) response.Redirect("pages/default.aspx") End Sub Need help please.. -bryan

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help html sysadmin tools workspace

  • Help with DataGrid
    B bryan paling

    I hate this coding because i'm coding inside the code not the codebehind. I'm using 1.1 version -bryan <div class="ForumSig">--- If the facts don't fit the Theory, change the facts...</div></x-turndown>

    ASP.NET help question

  • Help with DataGrid
    B bryan paling

    hi... the same error occurs.. :(

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help question

  • Help with DataGrid
    B bryan paling

    the same error occured, TryParse is not a member of Integer. I tried using this code: For Each i in dbgInbox.Items txtemailid = i.FindControl("txttsf") Dim out As Integer If Integer.Parse(txtemailid.Text, out) = True Then Response.Write("Done") else Response.Write("Failed") End If Next when I entered a number on the Textbox, the error "Input string was not in a correct format" appeared. maybe i just missed a code in here... "If Integer.Parse(txtemailid.Text, out) = True Then" regards bryan

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help question

  • Help with DataGrid
    B bryan paling

    Here's the result: Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30456: 'TryParse' is not a member of 'Integer'. Source Error: Line 170: Dim out As Integer Line 171: If Integer.TryParse(txtemailid.Text, out) = True Then Line 172: Response.Write("Done") Line 173: else I also tried using Int.TryParse but this error occured "Overload resolution failed because no accessible 'Int' accepts this number of arguments." regards bryan

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help question

  • Help with DataGrid
    B bryan paling

    No. I tried to enter a string like the word "one" and it displayed on the label the word one, as it says on the condition statements. But when I tried to enter a number, the problem now occurs. regards bryan

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help question

  • how Upload pdf file ?
    B bryan paling

    here's a tip (C#) Dim theFullyQualifiedPath As System.String = "" Dim Dir as System.String = "" theFullyQualifiedPath = Me._root_path & "\" & System.IO.Path.GetFileName(Me.FileUpload.PostedFile.FileName) Dir = "the directory on the site(url)" Dim strFileName as string strFileName = FileUpload.PostedFile.FileName Dim strFile as string strFile = System.IO.Path.GetFileNameWithoutExtension(strFileName) Dim strExtension as string strExtension = System.IO.Path.GetExtension(strFileName) Dim FullPath as string FullPath = Dir & strFile & strExtension hope this helps... :-D

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help question

  • Help with DataGrid
    B bryan paling

    Hi Pathan, I already tried it, but when I tried to enter a number on the Textbox, the error I received was "Input String was not in a correct Format". any other options??

    --- If the facts don't fit the Theory, change the facts...

    ASP.NET help question

  • Help with DataGrid
    B bryan paling

    HI Guys, Im having trouble converting the value of the Texbox(string) to Integer. Here is my code: Dim TSF as Double Dim txtemailid as Textbox if (IsPostBack) then For Each i in dbgInbox.Items txtemailid = i.FindControl("txttsf") TSF = txtemailid.Text if (TSF = 1) then lbl1.Text = "one" else lbl1.Text = "two" end if Next end if I also tried using TSF = Convert.ToInt32(txtemailid.Text) - error was "Input String was not in a correct format" and the other one TSF = Int.Parse(txtemailid.Text) - error was "Overload resolution failed because no accessible 'Int' accepts this number of arguments" Anyone who can help on this? :) Thanks a lot.. -bryan

    ASP.NET help question

  • Passing Data from ASP.NET to Axis Web Service
    B bryan paling

    to all d wizards out there: I have a problem here with regards to Axis Web Service. I have an ASP.Net Web Application and I have to pass values on An Axis Web Service that has been created... Can somebody tell me what to do with regards to this... Thanks a lot.. :((

    .NET (Core and Framework) csharp asp-net help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups