|
Did you mess up ( with [ and its associated closing character?
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
change
(e.RowIndex)
to
[e.RowIndex]
|
|
|
|
|
At first i didnt notice the () instead of the [] until i saw your answers, im used to VB
Besides (e.RowIndex), shouldnt he also change the cells(2) and controls(0)??
Alexei Rodriguez
|
|
|
|
|
Hello...
i am using datalist. i have taken a table in Datalist.and i want to use another datalist in this table. When i use another datalist .then DataBind is not working.
So i can use one Datalist into Another Datalist?
and also I have to Fetch record in Both DataList from different tables.
|
|
|
|
|
|
now, isn't this article providing code to him...? where is the ethical issue gone of spoiling a developer..... ?
ridiculous!
i hate to comment on other's work....and also expects the same....
Ashish Sehajpal
|
|
|
|
|
Yes you can
You can get the data from 2 different tables
I would use a dataset
Bind Table1 to parent datalist
And on ItemDataBound event of parent datalist get the corresponding rows from table2 and bind them to child datalist
This way, you dont have to read from DB once for each row on table1
Alexei Rodriguez
|
|
|
|
|
fdfgfdagdfsdfs 
|
|
|
|
|
|
modified on Friday, April 25, 2008 7:22 AM
|
|
|
|
|
No Result ! ...kuch bhe nahi hua ..( meri website hai www.rakshanllc.com/webbooking/booking.aspx)
It gave a Error !
Dont Get Paid for the Hours you worked, Get Paid for the Work You Have Done in an Hour.
|
|
|
|
|
Use body tag for any kind of farmatting on form level. E.g.
Arun Singh
Noida.
|
|
|
|
|
You better put you page content in a table and align that cell content to be CENTER
e.g.
<table width='100%' cellpadding='0' cellspacing='0'>
<tr>
<td align='center'>
<!-- YOUR PAGE CONTENT HERE -->
</td>
</tr>
</table>
cheers !
Ashish Sehajpal
|
|
|
|
|
i changed the Document Properties .... its working fine ..thanks for the suggestions !
Dont Get Paid for the Hours you worked, Get Paid for the Work You Have Done in an Hour.
|
|
|
|
|
Why was this message deleted?
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
Plz explain in detail how to design and develop a mail in asp.net with vb
|
|
|
|
|
Two namespaces:
1) System.Web.Mail
2) System.Net.Mail
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
google asp.net e-mail and you will quickly find lots of articles
|
|
|
|
|
dim MyMsg as new MailMessage()
MyMsg.From = new MailAddress("myadmin@domainname.com", "My Admin")
MyMsg.To.Add(new MailAddress("a.sehajpal@gmail.com"))
MyMsg.Bcc.Add(new MailAddress("ashish_sehajpal@yahoo.com"))
MyMsg.Subject = "My Reports"
MyMsg.Attachments.Add(new Attachment(Server.MapPath("folder/sendReport.doc")))
MyMsg.IsBodyHtml = true
MyMsg.Body = "<html><body>Find The Attached Reports</body></html>"
try
SmtpClient client = new SmtpClient()
client.Host = "mail.domainname.com"
client.Send(MyMsg)
catch ex as exception
' do something useful here
end try
Ashish Sehajpal
|
|
|
|
|
You went ahead and spoilt a developer from doing his homework.
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
then what is problem in ur stomach?
Ashish Sehajpal
|
|
|
|
|
|
what was that?
Ashish Sehajpal
|
|
|
|
|
Hi,
I have to make a Search System which searches only in my website...
I have gone throu a lot of forums..but am not getting anything good..
can anyone help me with its coding????
Thank You..
|
|
|
|
|
u r looking for readymade solution or need to write ur own code ? plz specify....
Ashish Sehajpal
|
|
|
|