|
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
|
|
|
|
|
If you are looking for a search solution, check out http://www.atomz.com/[^] They have something called Atomz Express, which is free upto 500 pages.
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
|
|
|
|
|
|
if you have to recognize quotation mark on SQL then use four quotations to get result as single one like this:
select ''''+'single quotation mark'
I Love T-SQL
|
|
|
|
|
Thanks for ur reply, I've to write in Vb. Its a mailing proj. While sending msg in a mail, IF the user uses (') then it crops error. How to overcome it
|
|
|
|
|
Have you tried doubling up any single quotes to escape them when
they're in the string?
stringvalue.Replace("'", "''")
I Love T-SQL
|
|
|
|
|
I don't have any Idea in Vb. But in C#
For ex: if we want our string to diaplay like - xml version="1.0"
then we have to code like -- xml version= "\" 1.0 \"".
So here you will get the output as: xml version="1.0"
VanithaVasu
|
|
|
|
|
hai friends
i have a client ....
and i want to develop a site for him in asp.net 2.0 with vb.net
but i dont know about how to gather the information from the client ..
and what type of the information is needed for the site ..
i need the information should be on paper , so that in future i should not have any problem with the client
so wt information , i have to ask the client
plz help , i m new to developing the site ....
i worked as programmer in a company
now my company needs to develop the site on my own ...
plz help me
give any related links for this ...
its urgent ..
thanks
vijay
|
|
|
|