Thanks
swguy23
Posts
-
How check my site's name in other's website -
How check my site's name in other's websiteHello can any body help me to find how to check whther my website name is exist in other website or not. for example my site name is www.abc.com and I want to find my URL address (http://www.abc.com) in other websites. So can anybody tell me how can I find my url name in other sites. Thanks in advance
-
Which Reader should be used to read URL addressI want to read the url address of the website. Can you please tell me which reader is used to Read URL addrss. I tried StreamReader which is included in System.Net but its not used to read url address. please guide me in this. thanks in advance.
-
How to find Reciprocal URLI am working on SEO based project. how can I find reciprocal url from my site. (searching my website name in reciprocal URL)
-
How to find Reciprocal URLI am working on SEO based project. In this project I need to find reciprocal website of other site. means here i need to find that the url site who wants to put their name on my site, then that site should also have my url address in thier site. so how can I find that whehter the requested site contains my url address or not. Please help me. Thanks in advance
-
How to find Reciprocal URLI am working on SEO based project. In this project I need to find reciprocal website of other site. means here i need to find that the url site who wants to put their name on my site, then that site should also have my url address in thier site. so how can I find that whehter the requested site contains my url address or not. Please help me. Thanks in advance
-
How to find Reciprocal URLI am working on SEO based project. In this project I need to find reciprocal website of other site. means here i need to find that the url site who wants to put their name on my site, then that site should also have my url address in thier site. so how can I find that whehter the requested site contains my url address or not. Please help me. Thanks in advance
-
How to find Reciprocal URLI am working on SEO based project. In this project I need to find reciprocal website of other site. means here i need to find that the url site who wants to put their name on my site, then that site should also have my url address in thier site. so how can I find that whehter the requested site contains my url address or not. Please help me. Thanks in advance
-
Deserialize XML DatabaseHello Everybody, I have XML Serilized data stored in the database. Now I want to Deserialze that data at run time. Anybody know how deserialze data at Run time. Thanks in Advance
-
Deserialize XML DatabaseHello Everybody, I have XML Serilized data stored in the database. Now I want to Deserialze that data at run time. Anybody know how deserialze data at Run time. Thankyou in Advance
-
Sending email message from asp.net webformhi i tried to paste the code but i dont know why its not displaying here so i have mailed the code to ur email address. so read that code and copy paste that code in ur web.config file Regards, Vidhin Shah
-
Sending email message from asp.net webform(your network host ip address and username and password)
-
Sending email message from asp.net webformIt's very easy to send and receve email in asp 2.0 first include following files in ur code filed 1)Imports System.Web.Mail 2)Imports System.Net You can send mail in following way ' Creating the Mail Message Dim objMailMessage As MailMessage objMailMessage = New MailMessage objMailMessage.From = "youremailaddress@yahoo.com" objMailMessage.To = custemail.ToString objMailMessage.Subject = "Subject Heading" objMailMessage.Body = "Thank you (any Description in body)" objMailMessage.BodyFormat = MailFormat.Html ' Sending Mail Message SmtpMail.Send(objMailMessage) 'And also set ur Web.config file by defining your network host ipaddress, username and password Regards, Vidhin Shah
-
How to identify Multiple Command Fields in Grid View in asp.net 2.0 [modified]Hello I have multiple Command Fields in my grid view and I want to perform different functions on both command fields. so how can I identify that which specific command fields is selected ??? If Any one have any idea about this then please reply me as early as possible. Thanks in Advance -- modified at 4:37 Thursday 1st March, 2007
-
how to email in asp 2.0It's very easy to send and receve email in asp 2.0 first include following files in ur code filed 1)Imports System.Web.Mail 2)Imports System.Net You can send mail in following way ' Creating the Mail Message Dim objMailMessage As MailMessage objMailMessage = New MailMessage objMailMessage.From = "youremailaddress@yahoo.com" objMailMessage.To = custemail.ToString objMailMessage.Subject = "Subject Heading" objMailMessage.Body = "Thank you (any Description in body)" objMailMessage.BodyFormat = MailFormat.Html ' Sending Mail Message SmtpMail.Send(objMailMessage) 'And also set ur Web.config file by defining your network host ipaddress, username and password Regards, Vidhin Shah -- modified at 3:38 Thursday 1st March, 2007
-
How to convert aspx page to HTML formatI have report in aspx format and I want to convert this aspx page to html format. so how can i convert this aspx to html format. Please help me to find the solution. thanks in advance
-
DropDown Event Related QueryYou can write following code on SelectedIndexChanged event of first dropdown list. and then load the data based on first dropdown's detail. and in second drop down keep AutoPostback off. /***************************** Code ************************************* Protected Sub Dropdown1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles SelectCmpCmb.SelectedIndexChanged Dim str As String str = "Select CompanyName from Company where CompanyName = '" & dropdown1.Text & "'" (Name of your first dropdown list) dropdown2.DataSource = dbaccess.ExecuteDataReader(str) dropdown2.DataTextField = "GroupName" dropdown2.DataBind() End Sub Note : Here dropdown1 is name of first dropdown list. and dropdown2 is name of second dropdown list. I hope this will help you.
-
How can use NOT IN queryI have list of users in the database, in the form once the users are selected, selected users should not display again while again selecting users. so I want to use NOT IN query. How can i use it.
-
How to use RSS in asp.netI need ur help in following two situation, if u any idea then let me know. 1) I want refresh partial web page of ASP.NET application. Ex. I put RSS of NSE/BSE graph in web page which can updated frequently. 2) I want Excel sheet print with their formulas not only data. Ex. I take print of marksheet but also want formula during print which is used for calculating percentage or total. Is there any possible way then let me know, i wait for ur favourable reply. Thanks in advance.
-
How to deserailize data from xml fileThank you Very much.