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

Kissy16

@Kissy16
About
Posts
252
Topics
121
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Gridview edit problem
    K Kissy16

    hai all, I have a gridview having edit button for updating a single column in my grid. Suppose i have 10 rows and having 3 columns.I am updtin 3rd column only. per row the 3rd column shd be unique. I want to check if the data exists for that column already if i click on edit button it shd not change into updatecancel. How to check the data" Here is my code for filling and updating kissy

    ASP.NET css help tutorial

  • gridview
    K Kissy16

    I can't give any condition in my sqlquery so that only desired records can come. From the display only i have to do,can u give something with gridview which can fulfill my requirement ?

    kissy

    ASP.NET tutorial question

  • gridview
    K Kissy16

    i could not understand what u r saying. I can't give any condition in my sqlquery so that only desired records can come. From the display only i have to do,i never done the thing u r telling. can u give some other idea please?

    kissy

    ASP.NET tutorial question

  • gridview
    K Kissy16

    I have given the following code,but still it is displaying all the rows. If e.Row.Cells(2).Text <> "" Then If ((e.Row.Cells(2).Text = e.Row.Cells(2).Text) + 1) Then e.Row.Visible = False End If End If

    kissy

    ASP.NET tutorial question

  • gridview
    K Kissy16

    hai all, i have a sqlstatemnt which returns 10 rows. I am fillig this data in gridview using datareader.Nothing new. But i wanted to fill the data on some condition,so that the rows which are fulfilling that condition can only come in the gridview. out of 10 rows i need 2,5,7,9,10 rows data.Infact i want to skip the data on some condition. I s possible with datareader? if yes how to do?If not how to do? Please anybody have any idea is helpful for me. Thanks in advance.

    kissy

    ASP.NET tutorial question

  • conversion
    K Kissy16

    thanks for the reply,my doubt is clear. I am trying now,definitely i have to be very care before conversion.

    kissy

    ASP.NET question csharp visual-studio

  • conversion
    K Kissy16

    thanks for the reply,my doubt is clear.I shd be careful while conversion by giving correct path.

    kissy

    ASP.NET question csharp visual-studio

  • conversion
    K Kissy16

    Hai all, I have a doubt. I have both .net 1.X and 2.0 applications and both the versions of VS were installed in my machine. If i migrate my vs 2003 app to vs2005,and before that i have taken backup of that vs2003 app. Here i am doubting that if i convert it into 2005,can i open that backup application again in 2003?? Hope u got my doubt and please respond to my question. Thanks in advance.

    kissy

    ASP.NET question csharp visual-studio

  • response.write
    K Kissy16

    Thanks for the reply.It worked for me.

    kissy

    ASP.NET help tutorial question

  • response.write
    K Kissy16

    Dear all, I want to print blank space between two string like following using For Each arrStr As String In strSplitArr If (arrStr <>"") Then Response.Write(arrStr) 'here i want print with space like following Response.Write(arrStr+" ") End If Next With response.write how to print blank space.How to use a tab space in response.write? If any bode help is apreaciable.

    kissy

    ASP.NET help tutorial question

  • Application not working
    K Kissy16

    Below script am using for password encryption function sendData(salt) { //var FORM = document.form[0]; if (document.forms[0].DDL_Distname.value == "Select District") { alert("plz enter user name."); return false; } if (document.forms[0].Txt_password.value != "") { document.forms[0].Txt_password.value = hex_md5(document.forms[0].Txt_password.value); document.forms[0].Txt_password.value = hex_md5(salt+document.forms[0].Txt_password.value); } else { alert("plz enter password."); return false; } return true; } </script> <script language="javascript" type="text/javascript"> window.history.forward(1); </script>

    kissy

    ASP.NET csharp javascript asp-net linux question

  • Application not working
    K Kissy16

    Hi all, My asp.net application is not working in mozilla firefox, But it is working perfectly in IE6. when i click on login button it is giving password wrong,if i run it on IE,login is successful. I have some javascript code in my source page of the login page. What might be the reason for this> I have tested it in linux o.s with mozilla. Can any body respond to this?

    kissy

    ASP.NET csharp javascript asp-net linux question

  • mail from asp.net1.1
    K Kissy16

    thanks for ur reply. how to check this?what i have to at smtp end? coz i hae keep it on hosting server.accordign that can u give me some idea??? please

    kissy

    ASP.NET csharp html asp-net help

  • mail from asp.net1.1
    K Kissy16

    thanks for ur replay.when i can send to my company domain,then how the spam can filter other mails. i am not getting,can u please give me some explanation with some example so that i can apply in my code?/ unsent msgs are queued up in queue folder of inetpub please

    kissy

    ASP.NET csharp html asp-net help

  • mail from asp.net1.1
    K Kissy16

    Hi all, following code is using to send mail. Problem is,it is reaching only our company domain mail ids not others.like gmail,yahoo etc which is wrong. what i have to do to send any mail id from any my gmail or company mail id. please can anybody give me some solution.pleaseee Dim objmail objmail = New MailMessage With objmail .To = "abcd@ourcomanydomain.in" .From = "abc@yahoo.co.in" .Cc = "abc@ourcompanydomain.in" .Subject = "My Message" .Body = "HTML Messag" .BodyFormat = MailFormat.Html End With SmtpMail.SmtpServer = "localhost" SmtpMail.Send(objmail)

    kissy

    ASP.NET csharp html asp-net help

  • email sending problem
    K Kissy16

    Dear all, Am sending this msg regarding asp.net 1.1 email usage. My code for sending email is below. The problem it is reaching my inetpub/mailroot/queue instead of actual mail id. I have seen all my smtp server settings which are using port 25 and localhost as smtpserver.No error nothing. Can anybody resolve using asp.net 1.1 not with 2.0. I had the solution for 2.0 Code is on button click event Dim cdoconfig, cdomessage, sch sch = "http://schemas.microsoft.com/cdo/configuration/" cdoconfig = Server.CreateObject("CDO.Configuration") cdoconfig.Fields.Item(sch & "sendusing") = 2 cdoconfig.Fields.Item(sch & "smtpserver") = "localhost" cdoconfig.Fields.Update() cdomessage = CreateObject("CDO.Message") With cdoMessage .Configuration = cdoconfig .From = _txtFrom.Text .To = _txtTo.Text .Subject = _txtSubject.Text .TextBody = _txtMessage.Text .Send() End With cdomessage = Nothing cdoconfig = Nothing I tried maximum trails still am not with the right solution.Can nay body tell me if u r free.

    kissy

    ASP.NET help csharp asp-net com sysadmin

  • Mail is not reached
    K Kissy16

    Thanks for ur prompt reply. Ya under inetpur,my mail messages were with msg icon. then form here what i have to do,so that i can send mail to any mail account of the user? Please dont feel trouble let me know how can i send msgs from my asp.net page. please....

    kissy

    ASP.NET csharp asp-net com tutorial question

  • Mail is not reached
    K Kissy16

    Hi all, Am trying to send an email from my asp.net page. Am using 5 textboxes and a button. Following is my code , After clicking the submit button it is displaying that mail sent successfully. How to ensure that mail has been reached.In my gmai maibox no msg was there. Can anybody tell me.?? Submit Button click event Dim tc, cc, bcc, subject, body As String tc = _txtTo.Text cc = _txtFrom.Text bcc = _txtBCC.Text subject = _txtSubject.Text body = _txtMessage.Text Dim status As Integer = sendMail(tc, cc, bcc, subject, body) If (status = 1) Then Response.Write("your mail has been sent successfully") Else Response.Write("sorry! your mail could not be sent�") End If My sendMail fuction Private Function sendMail(ByVal tc As String, ByVal cc As String, ByVal ccc As String, ByVal subject As String, ByVal body As String) As Integer Try SmtpMail.SmtpServer = "localhost" Dim msg As MailMessage = New MailMessage msg.From = "mymail@gmail.com" msg.Cc = cc msg.Bcc = ccc msg.Subject = subject msg.Body = body SmtpMail.Send(msg) Return 1 Catch ex As Exception Return 0 End Try End Function

    kissy

    ASP.NET csharp asp-net com tutorial question

  • instance problem
    K Kissy16

    while building itseldf it is showing the error like "identifier expected" in the following line.. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="Default3" %> ya i have added the same in my web.config file. there is no intellisence coming with my .cs class file.

    kissy

    ASP.NET help tutorial

  • instance problem
    K Kissy16

    am trying to use .cs class file in my vb.net project. I read that in vs2005 ,it compiles the multiple languages. and now in my app_code folder i have added some of my .vb classes and for c# classes i have added folder and inside i placed my c# files. i have added the following tag in my web.config When am just compiling it is giving error ,identifier expected in the below line <%@ Page Language="VB" AutoEventWireup="false" codeFile="Default3.aspx.vb" Inherits="Default3" %> and i wanted to create instance of that .cs class and want to use in my .vb.aspx file. Can it be possible,ya am i interpreting wrongly? please send me what i have to do in this case? please if u have time......

    kissy

    ASP.NET help tutorial
  • Login

  • Don't have an account? Register

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