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
V

Virendrak

@Virendrak
About
Posts
35
Topics
21
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to do Azure Integration with SharePoint Online (Office 365)
    V Virendrak

    Requirement : Currently, I have a site which is developed in SharePoint Online 2013. Where we have a section for software, which are saved in a different server (FTP Sever). And we have added those FTP links in our page. Example: which is hyper-linked with external FTP URL : ftp:///SoftwareName(it may be .zip, or .exe or any kind of setup file) Whenever authorized person want to download the s/w, the user will be redirected to FTP. We are facing slowness issue with our FTP server, so now we want to save those softwares in Azure Storage. • Please guide me which azure storage will be suitable for us? • How to upload software in Azure without writing a single line of code. • Can we use the Azure Storage as FTP server, where we can save/upload/delete/update the software • If user is logged in into SharePoint Online (Office 365), will Azure require the login again? while accessing/downloading the software, if we get all things(Azure and SharePoint Online) under one tenant. • The software download page which is created in SharePoint Online, is accessible by few user or groups. Can same group of user have login access to Azure to download the software? is it possible ? (Because in our existing environment, we have given FTP access to limited user, only they can download the s/w, when they access the link, it's asking for username and password). Thanks in advance! Kind Regards, Virendra Kumar

    SharePoint tutorial sharepoint workspace sysadmin cloud

  • Login Using facebook account+ASP.Net(C#)
    V Virendrak

    Hi Friends, I have created a web based application in asp.2.0 and now i want to implement the facebook api(Login Using facebook account ) in this application. I want implement this API in my page not in iframe can any one help me, thanks in advance.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET csharp asp-net json help

  • Plz Give me the solution : An existing connection was forcibly closed by the remote host.
    V Virendrak

    A transport-level error has occurred when sending the request to the server. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.)

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET sysadmin help

  • Random Images Generation for prevent spam registration.
    V Virendrak

    Dear all , i need code for Random Images Generation for prevent spam registration. plz send. thanx in advance.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET lounge

  • ASP.NET 2003 Mail Problem
    V Virendrak

    There is no code... its not working....

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET csharp html asp-net com help

  • ASP.NET 2003 Mail Problem
    V Virendrak

    MailMessage mm = new MailMessage(); mm.To = txt_Email.Value.Trim(); mm.Priority = MailPriority.High; mm.From = "mycompname@mydomain.com"; mm.Subject = "Hi "+ txt_FirstName.Value.Trim() +" , Thank you for registering."; mm.BodyFormat = MailFormat.Html; mm.Body = sbMail.ToString(); But this is not working for yahoo.com,co.uk, and Rediffmail.com.rediff.com. the mail is bouncing back and in yahoo goin in bulk /Spam Folder.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET csharp html asp-net com help

  • How Find This is mail is Valid or not...!
    V Virendrak

    I am sending mails to group of people at a time . if some of the mailids are not correct how to find out that id for further processing. like: nicevirendra@rediffmail.com is Valid a@a.asasa is Invalid How i Find This is....!

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET com tutorial

  • Hi, im getting this problem
    V Virendrak

    Hi, im getting this problem plz help me out....!!!!!!!!!!!!! its urgent. An error occurred loading a configuration file: Failed to start monitoring changes to '\\stage\final\MyImagine\dv\inc' because the network BIOS command limit has been reached. For more information on this error, please refer to Microsoft knowledge base article 810886. Hosting on a UNC share is not supported for the Windows XP Platform. \\stage\final\MyImagine\dv\inc\web.config

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET help sysadmin hosting workspace

  • How use FTP Class in asp.net.............!
    V Virendrak

    hey what is this..!!!!!!

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET csharp asp-net sysadmin help

  • How use FTP Class in asp.net.............!
    V Virendrak

    How use FTP Class in asp.net i want upload file From One server to another server, how use FTP class in ASP.NET 2.0(C#) plz help me its urgent.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET csharp asp-net sysadmin help

  • Help Regarding to upload any file.
    V Virendrak

    how i upload file in Sand Device. means one server to another server.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET sysadmin help

  • Help Regarding to upload any file.
    V Virendrak

    Hi, i want to upload file in perticular IP Address(Server), becuase my application is hosted in Three diffrent web servers, i want save this file in Perticular sand Device which is contain the user uploded files.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET sysadmin help

  • Converting Integet to Time:
    V Virendrak

    declare @sec int set @sec=130210 select convert(varchar(5),@sec/3600)+' Hrs : '+convert(varchar(5),@sec%3600/60)+' Min : '+convert(varchar(5),(@sec%60))+' Sec' OR --If 130210 is Second : SELECT CONVERT(varchar(8), DATEADD(second, 130210 , '0:00:00'), 108) --If 130210 is Minute : SELECT convert (varchar(8),dateadd(minute,130210 ,'0:00:00'),108) OR declare @Diff int set @Diff=130210 SELECT CONVERT(varchar(6), @Diff/3600) + ':' + RIGHT('0' + CONVERT(varchar(2), (@Diff % 3600) / 60), 2) + ':' + RIGHT('0' + CONVERT(varchar(2), @Diff % 60), 2)

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    Database database com tutorial question

  • How to query all of the tab_name in the same database
    V Virendrak

    IF EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE' AND TABLE_NAME='Student') SELECT 'Student exists.' ELSE SELECT 'Student does not exist.' -- or SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='Student' -- or SELECT * FROM sysobjects WHERE name='Student' --OR IF OBJECT_ID('Student') IS NOT NULL PRINT 'Student exists.' ELSE PRINT 'Student does not exist.'

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    Database database c++ help tutorial

  • GridView in C#. Only alternate colum gets binded in DataControlRowState
    V Virendrak

    private void dgContacts_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { DataGridItem item = e.Item; if (item.ItemType == ListItemType.AlternatingItem || item.ItemType == ListItemType.Item) { if ((e.Item.ItemIndex % 2) != 0) { LinkButton editButton = item.Cells[0].Controls[0] as LinkButton; if (editButton != null && editButton.CommandName == "Edit") { editButton.Visible = false; } } } }

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    C# csharp database wpf wcf

  • How to combine two DLL into one ?
    V Virendrak

    Chk out this ... http://www.genetibase.com/cforce/nugenunify.php[^]:rolleyes:

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    C# tutorial question

  • How to combine two DLL into one ?
    V Virendrak

    try this.. http://www.codeproject.com/useritems/Gilma_-_Gui_for_ILMerge.asp[^]

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    C# tutorial question

  • Session.clear ans session.abandon
    V Virendrak

    in, Session.Clear() Session key also remove. coz.. foreach (string ste in Session.Keys) { Response.Write(ste + ":" + Session[ste]); Response.Write("
    "); } O/p is nothing.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    C#

  • Session.clear ans session.abandon
    V Virendrak

    in, Session.Clear() Session key also remove. coz.. foreach (string ste in Session.Keys) { Response.Write(ste + ":" + Session[ste]); Response.Write("
    "); } O/p is nothing.

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    C#

  • Online Quiz wanted to show questions in random order
    V Virendrak

    Use , NewID()

    Never Think That You Have Failed Instead Always Think That u hav Better Chance Next Time...

    ASP.NET database sql-server sysadmin tutorial lounge
  • Login

  • Don't have an account? Register

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