User Profile

Collapse

Profile Sidebar

Collapse
rohitscripts
rohitscripts
Last Activity: Apr 18 '08, 09:29 AM
Joined: Apr 17 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rohitscripts
    started a topic ..web service to convert INR to USD..
    in .NET

    ..web service to convert INR to USD..

    I'm using paypal in my website and as it dont support transactions in INR, i need to convert the amount from INR to USD and pas the same to Paypal.
    so..nw can any one help me in converting the INR to USD...!!!
    I guess i sh'ld use some web service to do this.
    any help regarding this 'ld be appreciated..
    thanks in advance
    See more | Go to post

  • rohitscripts
    started a topic maintaining sessions..urgent
    in .NET

    maintaining sessions..urgent

    hi everyone..
    My web application contains a login module in which i need to maintain the session of the user
    1) for an unlimited period if the user is using the website
    2) for 30 minutes from the last request sent by the user(ie need to maintain the sesion of the user for 30 min after the user stops using the websiite)

    Please help me out....in achieving this
    thanks in advance
    See more | Go to post

  • rohitscripts
    started a topic dynamic backup from sql server 2000
    in .NET

    dynamic backup from sql server 2000

    How to take dynamic backup from sql server 2000?
    i.e, i wanna get complete backup timely(say, once for every week) from sql server 2000 database and that backup should be mailed to me or should be saved in my local machine.
    I tried using the "maintenanc e plan" option.....but couldnt make it out.

    could anyone please help me regarding this....

    thanks in advance

    regards
    ro...
    See more | Go to post

  • compatibility of VWD with VSS and TFS....pls help

    I'm currently using "Visual Web Developer 2005 Express Edition".
    Now I want to use VSS(Visual Source Safe) or TFS(Team Foundation Server).
    But I came to know that express editions don't provide support for extra integration tools...and that I can use them as stand alone applications.
    Now, what my question is, which one (VSS or TFS)is better to work with? Whether I can Download them for free of cost? And which...
    See more | Go to post

  • rohitscripts
    replied to unable to find .aspx.cs files
    in .NET
    hello
    yes i tried that too...but no use.By the way, i'm using vwd 2005..and when i compile my webapplication. ..no dlls are being created.
    I tried using ildasm to view the code in the dlls...but no use.
    so...is rebuilding the complete website the only option left out???

    regards
    rohit...
    See more | Go to post

    Leave a comment:


  • rohitscripts
    replied to unable to find .aspx.cs files
    in .NET
    thank u for your reply
    but...with out .aspx.cs files(with all the event handler coding), howz the website working.
    will these .aspx.cs files be converted to dlls.
    (if so, please tell me how to do that for my application.)
    and is there any way to see and modify the coding part.
    anticipating reply from u
    thankls and regards...
    See more | Go to post

    Leave a comment:


  • rohitscripts
    started a topic unable to find .aspx.cs files
    in .NET

    unable to find .aspx.cs files

    I was given a project(web application), which needed to be modified a little and to be maintained.
    But in the source code (that they had given me), there are only .aspx files and some .dll files(in bin). I could not find any .aspx.cs files.
    I thought they missed to gimme those files and asked them the ftp details to download the files. But i could find no .aspx.cs files there too.
    And the website is working fine. how...
    See more | Go to post

  • how to pass login credentials to connect an ftp server

    I'm uploading an image from my aspx page to a folder(not in database) in ftp server using the following code::


    System.IO.FileS tream newFile
    = new System.IO.FileS tream(Server.Ma pPath(sSavePath + sFilename),Syst em.IO.FileMode. Create,FileAcce ss.ReadWrite, FileShare.ReadW rite);
    newFile.Write(m yData, 0, myData.Length);


    I'm using a fileupload control to select an...
    See more | Go to post

  • rohitscripts
    started a topic help neede in sql server
    in .NET

    help neede in sql server

    if a stored procedure contains more than one statement(say, insert and select) and i want to execute only one statement from my front end....

    create procedure myproc
    @username varchar(),
    @password varchar()
    as
    insert into mytable values(@usernam e,@password)
    select * from mytable

    for example,
    i've two buttons in my front end...1)insert 2)show

    if i click insert...
    See more | Go to post

  • rohitscripts
    replied to using stored procedures in .net
    in .NET
    hi swetha
    thank you very much.....
    your answer helped me a lot!...thanku
    but i could not know the difference between (ur code n my code)

    OleDbParameter p2=new OleDbParameter( );
    p2.OleDbType=Ol eDbType.Integer ;
    p2.Direction= ParameterDirect ion.Output;
    p2=mycmd.Parame ters.Add("@tot" , OleDbType.Integ er);

    Dim p2 As OleDbParameter
    p2 = mycmd.CreatePar ameter()
    ...
    See more | Go to post

    Leave a comment:


  • rohitscripts
    replied to using stored procedures in .net
    in .NET
    Hi swetha,
    thank you very much for your reply to my second question too.

    yes, i'm getting an error while executing this code.
    the error looks like this::
    Initially, when i didnt included "p2=mycmd.Param eters.Add("@tot ",
    OleDbType.Integ er);", the out parameter stored a null value.

    And when i included the above,the...
    See more | Go to post

    Leave a comment:


  • rohitscripts
    started a topic using stored procedures in .net
    in .NET

    using stored procedures in .net

    could any one please help me in using the output parameters to retrieve some data from my database to a web form!!
    here is a sample code:
    stored procedure::

    alter proc uid_availabilit y_check
    @userid varchar(25),
    @tot int output
    as
    select * from myuserinfo where (myuserinfo.use rid=@userid)
    set @tot=@@rowcount

    c# code::

    (here con is my connection to the database)...
    See more | Go to post

  • rohitscripts
    started a topic how to highlight specific rows in a gridview??
    in .NET

    how to highlight specific rows in a gridview??

    i have a gridview in my web page which shows the details like employee name, employee salary.
    i filled my gridview using a dataset and all the values are retrieved from sqlserver db.
    now, in my gridview, i want to highlight the rows(change color of the rows) or employees who get salary more than 10,000.
    could any one of you please help me in doing so.
    please give the code if any!

    thank you
    See more | Go to post

  • rohitscripts
    started a topic c# code needed...urgent!!
    in .NET

    c# code needed...urgent!!

    could any one gimme coding ... to have out put like this-

    **********
    ****--****
    ***----***
    **------**
    *--------*
    **------**
    ***----***
    ****--****
    **********
    (note::here, i'm unable post this question with more spaces in between the *s. so,i have inserted - symbol instead of spaces)

    please dont kid by sending code ..jus using response.write.

    ...
    See more | Go to post

  • rohitscripts
    started a topic white diamond in c#.net
    in .NET

    white diamond in c#.net

    could any one gimme coding ... to have out put like this-

    **********
    ****--****
    ***----***
    **------**
    *--------*
    **------**
    ***----***
    ****--****
    **********
    (note::here, i'm unable post this question with more spaces in between the *s. so,i have inserted - symbol instead of spaces)

    please dont kid by sending code ..jus using response.write.

    ...
    See more | Go to post

  • rohitscripts
    started a topic inserting textbox values into a gridview
    in .NET

    inserting textbox values into a gridview

    I need to fill my gridview with the values that are entered into textboxes. For this, i thought to fill a datatable with the textbox values first and then bind this datatable to my gridview.
    Could any one please help me in doing this.
    thank you
    See more | Go to post
No activity results to display
Show More
Working...