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
B

Blikkies

@Blikkies
About
Posts
227
Topics
33
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Creating anonline-educational platform ?
    B Blikkies

    I have never used Wordpress before so I could be wrong. If I understand correctly, MySQL is the core of Wordpress so you already have a database, you will have to find a plugin to save your data to the database, I have found one on google but you will have to pay for it. You can do it yourself but it will require you to learn PHP and SQL. Have a look at this plugin: [https://wordpress.org/plugins/ninja-forms/\]

    Web Development php database graphics hosting tools

  • Some GridView controls are running empty rows. Any ideas to fix
    B Blikkies

    Instead of binding all gridviews to one DataTable, bind each grid to a different dataView of the same DataTable: e.g.

    Gridview1.DataSource = New DataView(ds)
    Gridview1.DataBind()
    grvspouse.DataSource = New DataView(ds)
    grvspouse.DataBind()
    grvDiv.DataSource = New DataView(ds)
    grvDiv.DataBind()
    ...
    ...

    ASP.NET database html json help question

  • ASP.NET MVC
    B Blikkies

    I have been a web developer more than 10 years using ASP.NET Web Forms and I would like to brush-up my skills and currently looking at ASP.NET MVC. I was looking at a few courses on Udemy and Pluralsight and also at a few ebooks. Do you guys have any recommendations on which courses or books are great from start to end?

    ASP.NET asp-net csharp architecture question

  • How to I fix "The method or operation is not implemented"?
    B Blikkies

    Check the UserPrincipal.FindByIdentity functions if it has the following code in it:

    throw new NotImplementedException();

    ASP.NET help security tutorial question workspace

  • How I can close current tab in a browser window using JavaScript?
    B Blikkies

    That is why websites were easily hacked in the earlier times due to inefficient security. Like I said, javascript can only close windows that was opened by it.

    JavaScript javascript question

  • How I can close current tab in a browser window using JavaScript?
    B Blikkies

    Unfortunately you can't for security purposes. You can only close windows that were opened by Javascript.

    JavaScript javascript question

  • video calling in asp.net
    B Blikkies

    Have a look at WebRTC

    ASP.NET csharp asp-net

  • How to identify if string is a phone number, Email address or a web address in Javascript?
    B Blikkies

    I'm probably to late but here is it anyway. You can make use of Regular expression (Regex) to validation your strings. Here is an example on how to check if the string is an email address using regex:

    function validateEmail(email) {
    var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
    return re.test(String(email).toLowerCase());
    }

    JavaScript javascript com sales json tutorial

  • JavaScript beginner books, wich one?
    B Blikkies

    After you have learned the basics of JavaScript, I highly recommend getting a nice book on JQuery, belief me this makes your life much easier.

    JavaScript javascript tutorial question learning

  • Re-code to get rid of Absolute Positioning?
    B Blikkies

    There is nothing wrong with Absolute Positioning, this is a widely used property and is here to stay for a long time. The way you are using it is unnecessary that is if you don't display your layers above a fixed background image (<img src="">). If you want to move away from Absolute Positioning, use margins.

    Web Development tutorial csharp html css design

  • Force Browser to use updated pdf file instead of cache version
    B Blikkies

    The problem is that the emails have already been sent so won't be able to add a query string.

    ASP.NET help question announcement

  • Force Browser to use updated pdf file instead of cache version
    B Blikkies

    Hey Guys, I have run into a small problem, we have sent a bulk email containing a link to a pdf file, a week after the bulk mail the pdf file had to be updated. My problem now is some of the recipients still viewing the cache version of the pdf, is there a way to force the browser to view the updated pdf file?

    ASP.NET help question announcement

  • how to reset the internet explorer settings to default using asp.net with c#
    B Blikkies

    It is not possible with a very good reason, It will be a huge security risk.

    ASP.NET csharp asp-net help

  • Opening word/pdf document in another window
    B Blikkies

    Are you able to open pdf files or is it also showing binnary?

    ASP.NET database algorithms help tutorial

  • Opening word/pdf document in another window
    B Blikkies

    what is the file's extension? .doc or .docx I think it is your content type that is incorrect If the extension is .doc, the content type should be application/msword and if your extension is .docx, the content type should be application/vnd.openxmlformats-officedocument.wordprocessingml.document

    ASP.NET database algorithms help tutorial

  • Opening word/pdf document in another window
    B Blikkies

    You can add target="_blank" to you hyperlink button and set the button to navigate to a generic handler that will get the file from your database and display it.

    ASP.NET database algorithms help tutorial

  • Interview Question
    B Blikkies

    Last time I checked, MVC is part of ASP.net.

    ASP.NET csharp question asp-net wpf architecture

  • problem with Ajaxcontroltoolkit
    B Blikkies

    Replace asp:ScriptManager with ajaxToolkit:ToolkitScriptManager

    ASP.NET help csharp javascript visual-studio design

  • issues related to asp.net application
    B Blikkies

    Did you enable "World Wide Web Services (HTTP Traffic-In)" and "World Wide Web Services (HTTPS Traffic-In)" inbound rules?

    ASP.NET help csharp asp-net tutorial

  • How to control the do / while infinite loop?
    B Blikkies

    guess can return an empty string when you click on Ok without entering anything, guess will only be null if you click on cancel or if you close the prompt. Add guess == '' to your if statement or replace guess == null with isNaN(guess) that will check if the value is a legal number

    JavaScript javascript help tutorial question
  • Login

  • Don't have an account? Register

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