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
K

Krishnraj

@Krishnraj
About
Posts
63
Topics
24
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to handle selectedIndexChanged/onChange event of DropDownlist in MVC
    K Krishnraj

    Hi All, I m developing one app using MVC Architecture. Well I am new to MVC, so sorry if I am being a bit thick. Now my problem is how to handle selectedIndexChanged/onChange event of DropDownlist in MVC??:confused: Plz suggest me, if u have any idea... Thanks in advance....

    Krishnraj

    ASP.NET architecture asp-net help tutorial question

  • Load XML File from Client Machine using Javascript
    K Krishnraj

    Hi manas, First-of-all thanks for reply... Do u have any idea regarding the kind of ActiveX available which read the xml file from client machine as i have a short deadline?? Thanks Again buddy.. :)

    Krishnraj

    ASP.NET question javascript xml

  • Load XML File from Client Machine using Javascript
    K Krishnraj

    Hi all, I Develop one application in which i want to load XML file from client machine using javascript and process its nodes. How can i load XML file which is stored at client machine into my application??? :doh: Thanks in advance...

    Krishnraj

    ASP.NET question javascript xml

  • Is there a way to run wpfbrowser application in linux?
    K Krishnraj

    Hi all, Is there a way to run wpfbrowser application in linux? Thanks in advance....

    Krishnraj

    WPF linux question

  • Problem with Identity Specification in SQL Server 2008
    K Krishnraj

    Hi all, I have one problem with Identity Specification in sql server 2008, i.e. Once I am having records in one table and after that if I want to change identity from Yes to No / No to Yes. Unable to do it :zzz: Am i missing something or is it bug ?? Any solution for that? Thanks in advance...

    Krishnraj

    Database help database sql-server sysadmin question

  • Can i put semicomma seperated emailid in To using System.Net.Mail namespace
    K Krishnraj

    Hi Christian, First-of-all thanks for replying... there is no issue to put the code and here is my code...

    Dim Strsmtp As New System.Net.Mail.MailMessage
    ' MailFrom and MailTo come from the database
    Dim from As New System.Net.Mail.MailAddress(objReader("MailFrom").ToString())

    ' Here i Put hard code emailids
    Dim toList As New System.Net.Mail.MailAddress("abc1@abc.com;abc2@abc.com")
    Strsmtp.From = from
    Strsmtp.To.Add(toList)

    Strsmtp.Subject = "Hi"
    Strsmtp.IsBodyHtml = True
    Strsmtp.Headers.Add("Content-Type", objReader("MailContentType"))
    Strsmtp.Headers.Add("Reply-To", objReader("MailReplyTo"))
    Strsmtp.Body = "Test"
    Dim sp As New System.Net.Mail.SmtpClient()
    sp.Send(Strsmtp)

    and when i put the single emailid, then it gives different error that - Host Name is not specified. But i already specified host name in my web.config file. Here is the code..

    <system.net>
    <mailSettings>
    <smtp>
    <network host="localhost" />
    </smtp>
    </mailSettings>
    </system.net>

    as i work in my local pc, so i write "localhost"... Now i don't understand what i have to do???:confused:

    Krishnraj

    ASP.NET help csharp com

  • Can i put semicomma seperated emailid in To using System.Net.Mail namespace
    K Krishnraj

    Hi all, I make one application in which i have one requirement that, i have to put multiple emailids with semicomma seperated like - "abc1@abc.com; abc2@abc.com; abc3@abc.com; ..." but its give me an error when i assign it in "To"!!!! When i put single emailid then it don't gives any error... Need some suggesion to solve this issue...

    Krishnraj

    ASP.NET help csharp com

  • Thread
    K Krishnraj

    Try using BackgroundWorker component which u can find in ToolBox of Visual Studio.

    Krishnraj

    C# csharp question

  • Is it possible to popup reminder on particular time in asp.net
    K Krishnraj

    Hi, Thanks for replying... Yes, You are correct..and now see this... I make one function in javascript, just for testing

    function startTime()
    {
    var today=new Date()
    var h=today.getHours()
    var m=today.getMinutes()
    var s=today.getSeconds()

    // Call the page which checks the minutes after every one minute
    t=setTimeout('startTime()',1000)
    }

    In the above code startTime function call recursively bcs i have to check the datetime from the database which is there in the page. so it will run after every 1 minuite and it will run on every client computer. so can u think performence wise it is suitable?? And yes one more thing Here JQuery can help me? I want yr suggesion. Thanks again...

    Krishnraj

    ASP.NET csharp asp-net database question

  • Is it possible to popup reminder on particular time in asp.net
    K Krishnraj

    Hi all, In my application, i have one requirement that i want to show popup type reminder on particular time which is set by user. This is call center type application in which executive set the reminder to call on particular time and all his reminder message and time are inserted into the database and to show popup, it will fetch the reminder data from the database. I have one clue to implement it, but performence wise its not good to implement it. So Is there any way to implement it???????????:confused: Thanks in advance...

    Krishnraj

    ASP.NET csharp asp-net database question

  • How to refer dll from our Application
    K Krishnraj

    You have to add reference to yr application's bin folder by right click on that and click "Add Rererence" OR If yr dll in System32 folder then use below code: First include below namespace

    using System.Runtime.InteropServices;

    and then give dll reference as shown below.

    [DllImport("dllName.dll")]
    public static extern (function datatype) DllFunctionName();

    Hope It will help u.

    Krishnraj

    Database help tutorial

  • is view in sql server 2000 increase performance
    K Krishnraj

    Hi all, I have one silly question - is view in sql server 2000 increase performance ?

    Krishnraj

    Database question database sql-server sysadmin performance

  • Search Optimization
    K Krishnraj

    Thank you very much for yr suggesion :rose: and yes i also take care abt indexing service

    Krishnraj

    Database database sql-server sysadmin algorithms performance

  • Search Optimization
    K Krishnraj

    Hi mika, Thank for replying.. Few days ago i read somewhere in site that fulltext indexing can not search all words. that is why i wrote like this. so to search from fulltext indexed column i have to use Contain or something that kind of word. M i right? Actually i have no idea how to use it? so give some suggesion how to use it. Thank you again... :)

    Krishnraj

    Database database sql-server sysadmin algorithms performance

  • Search Optimization
    K Krishnraj

    Hi all, I have one table in which there is a column named productDetail which has datatype varchar(8000). When i queried to this table, it takes lots of time to search. There is a 6 lac records in my table. I try to use Fulltext indexing, but it has some limitation for some words which it can not able to search as per my knowledge. I use SQL Server 2000. Is there any ways to make search more faster. :zzz: Thanks in advance...

    Krishnraj

    Database database sql-server sysadmin algorithms performance

  • is there any framework exists except .net and mono to develop application in linux
    K Krishnraj

    Hi all, I want to know that is there any alternative than mono and .net? i mean is there any framework exists except .net and mono to develop application in linux?

    Krishnraj

    IT & Infrastructure csharp linux question

  • Can i run windows application in Linux ?
    K Krishnraj

    How to install mono framework in red hat? i mean what are the steps to install mono on red hat? Thanks in advance

    Krishnraj

    C# csharp linux question

  • Self Referenced Tables.
    K Krishnraj

    Yes, my posted query displays the name of the table and all its constraints. but in sql server 2000. I see yr query and its of sql server 2005. anyways, now u got the solution. but its just for yr info.. :)

    Krishnraj

    Database database tutorial

  • Self Referenced Tables.
    K Krishnraj

    Hi Xandip, Just try below query. and yes run it in SQL Server 2000

    select * from INFORMATION_SCHEMA.TABLE_CONSTRAINTS where Table_Name = 'TestTable'
    and Constraint_Type = 'FOREIGN KEY'

    Hope it will help u.

    Krishnraj

    Database database tutorial

  • sp_cursoropen - does not return rowcount
    K Krishnraj

    Hi Mika, Yes your answer is correct, inner join is not problem here. And as per u said, i used keyset-driven cursor then it gives me count.. :-D So its briliant suggesion... Thank you boss....:rose:

    Krishnraj

    Database sharepoint 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