IP Address To Number Formula Not Working?
Mar 16, 2010I am currently using this formula to convert an IP address to a number, however I do not get the correct results.
[Code]....
'Dim arrDec() As String
I am currently using this formula to convert an IP address to a number, however I do not get the correct results.
[Code]....
'Dim arrDec() As String
I am new to .net having come from a PHP background.I'm making a small website at the moment in .NET. On one page I have a form with a few fields:
1st value (let's call it A)
2nd value (let's call it B)
3rd value (let's call it C)
4th value (let's call it D)
When the user clicks the submit button, it needs to work out the formula:
(A*4)+(B*3)+(C*4)+D+15
What is the easiest way to achieve this in .NET? Is it best to use a 'code-behind' model and have the calculations done on another page then displayed on the next webpage?
any one know why are the following two give me different result? they should both give me no results as the value I give is not available. however, number 1 give me many results, and number 2 works as expected. I'd like the number 1 working as the same as number 2.
1. DECLARE
@SearchMCat nvarchar,
@SearchTitle nvarchar,
@SearchDesc nvarchar
SET @SearchMCat = 'fjiewo;jafoia'
SET @SearchTitle = 'fryere'
SET @SearchDesc = 'fdsfdsafae33'
SELECT ArticleCategory.CategoryDisplayName, Article.AudioPlaybackTargetTabID, Article.VideoPlaybackTargetTabID, Article.StartTime, Article.DateAdded, Article.Body, Article.Synopsis, Article.Title, Article.ArticleHasAudio, Article.ArticleHasVideo, Article.createdBy,
Article.RatingTotal, Article.RatingCount, Article.ArticleID, ArticleCategory.CategoryName
FROM ArticleCategory RIGHT OUTER JOIN Article ON ArticleCategory.ArticleCategoryID = Article.MasterCategory
WHERE (ArticleCategory.CategoryName LIKE '%' + @SearchMCat + '%') or (Article.Title LIKE '%' + @SearchTitle + '%') or (Article.Body LIKE '%' + @SearchDesc + '%')
2.
SELECT ArticleCategory.CategoryDisplayName, Article.AudioPlaybackTargetTabID, Article.VideoPlaybackTargetTabID, Article.StartTime, Article.DateAdded, Article.Body, Article.Synopsis, Article.Title, Article.ArticleHasAudio, Article.ArticleHasVideo, Article.createdBy, Article.RatingTotal, Article.RatingCount, Article.ArticleID, ArticleCategory.CategoryName
FROM ArticleCategory RIGHT OUTER JOIN Article ON ArticleCategory.ArticleCategoryID = Article.MasterCategory
WHERE (ArticleCategory.CategoryName LIKE '%' + 'fdsafdsafdsa' + '%') or (Article.Title LIKE '%' + 'fffaery' + '%') or (Article.Body LIKE '%' + 'fdas3r43ffdsa' + '%')
I want to send email to others. how can i find out my smtp address and port no. I am developing small application. I want to send mail to users.
View 2 Replies1st i start from the SQL Table design, i created a table which contain
RegisterID(for eg. id=1000123), Username, pasword,
Full Name & etc
using a store procedure but i didnt include 'RegisterID' in there becuz i used
'identity' method for auto increment of RegID.
my question is that, i created a login & Welcome page (in C#).
its work properly, but now i want a way, when a user login into the website,
his RegisterID(for eg. id=1000123) will appear in Browser's Address bar
for eg. (http://www.mysite.com/welcome.aspx?id=1000123).
what command i have to give, to appear this ID.
i used Response.Redirect("newuserinfo.aspx?" + "username=" + username_txt.Text);
the username coming on the address bar, but i donno how to show RegisterID.
How can i imports Contacts like name ,mobile numbers,Name from yahoo ..
View 1 Replies[Code]....
The above control is firing the error message -- even when a valid email address is entered. Any idea what I am doing wrong?
Please correct me if I am wrong, or agree with me if I am right.
1. Validator.Enabled == false;
2. Before Page.Validate(groupName) is called, BaseValidator.Validate() is called.
3. If a Validator is not being displayed, such as being in an non active View of a MultiView.I even wrote a Custom Validator that was in View.It checked if Validator.IsValid and it returned true when it wasn't.Is there any way to get around number 3?
I used the following code in global.asax to count number of visitors in web but it didn't work
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
' Code that runs on application startup
Application("counter") = 10
End Sub
Sub Application_End(ByVal sender As Object, ByVal e As EventArgs)
[code]...
I am using the asp.net and framework 2.0 with Ajax enable web.i have a text box and when user will enter "a" or number in this will search the name started from "a" character or number if he or she enter the number basically we can say live-search.
Employee search: Textbox.In this text box she/he will enter the first character of name or first number of employeeno and according to the a character name will search in list.
I have been attempting to find a solution for my phone number formatting problem for 2 hours now and I am not getting any closer. My 10 digit phone number is stored as a varchar(14) without any formatting (just 10 digits).
Here is the code to format the phone number in a gridview:
[Code]....
why the formatting won't work? It just displays the 10 numbers with no formatting.
i have a page in my webapp, in which a pdf is created. When the page is loaded, parameters are read from the querystring and the process of building the pdf starts. This contains two xslt transformations and one antennahouse-fo-formatter call. The result of the first xslttransformation is written into an memorystream, which is the source for the second transformation. The result from the second transformation is the source for the pdf-generation. Our live-system is an loadbalanced-system containing two servers. The page works for a while, but at once the page fails on one server with the following exception:
[Code]....
Writing the responsestream: arr is byte[]
[Code]....
I experience a strange issue with DropDownList today.
It is bind to SqlDataSource which produce about 1500 item. SqlDataSource working properly and no mistake in SQL.
When i bind it to a DropDownList, first item automatically selected on load. But if i try to select other items, DDL never renders. Width of DDL shrinks to zero. But if i use UP and DOWN arrows, i can go through items which appears on the first line of DDL. Shortly, DDL never render a LIST of data for me as it is supposed to do.
If restrict the data as "SELECT TOP 100 SupplierName blabla..", the DDL works properly. Is there any data limit in DDL? 1500 line is massive for DDL?
With the same SqlDataSource, ListView control is working succesfully.
Here is my ASPX
[Code]....
referring to: [URL] v nice it works.. but i have tried this before in my previous app it works but i just try now <%# Container.ItemIndex + 1 %> but not work ..what is the difrence in these
View 3 RepliesI have managed to expose the MEX endpoint of my WCF service and I can access it with the address like [URL] (example) and get the WDSL. So no problem there.
However, my WCF test page shows the address wrongly by using the server's name instead of the DNS name. And if I click on the link on the test page it won't work (can't get WSDL).
The WCF test page looks like this:
MyService Service
You have created a service.
To test this service, you will need to create a client and use it to call the service.
[URL]
The WCF service is hosted in IIS6. I would like to have a test page with the correct WSDL address so users can see the WSDL quickly in the browser just by clicking on the WSDL address.
In short: How can I change the MyServerName to inter.mycompany.com on the WCF test page? Can this be specified somewhere in the Web.config?
I am trying to pull entries from a database based on the current users IP Address. Here is what I have so far:
[Code]....
I am receiving the following error: Cannot find either column "Request" or the user-defined function or aggregate "Request.UserHostAddress.ToString", or the name is ambiguous.
Is it possible to do this? Should I try to access this information another way?
I hve two textboxes named TxtRelinquished,txtDevAreaAcrg.On form load in txtDevAreaAcrg suppose 100 is dere.& TxtRelinquished is empty.
Now the user runs the form,suppose in TxtRelinquished types 2,den i want in txtDevAreaAcrg = 98 is dere(txtDevAreaAcrg -TxtRelinquished).
Now suppose the user types 0 after 2,its 20 den in txtDevAreaAcrg = 78 is dere.
But I want dat in txtDevAreaAcrg 80 is to there according to the formula.How to do that??I think so Keyup event is not the right way to use i my case!Code:
function GetAcreage_Amt()
{
var _TxtRelinquished = document.getElementById('<%= TxtRelinquished.ClientID %>');
[code]....
Is it possible to find out the clients IP and possibly MAC address from non IE browsers (i.e. without using ActiveX)? If so, how?
View 1 RepliesAny open source javascript mathematical formula editor to recommend? I want to add mathematical formula editor to my web site, so that when people submit message using text box, they can insert related mathematical formula.
BTW: I am using VSTS 2010 + C# + .Net 4.0 + ASP.Net + IIS 7.0, any such controls provided by MSFT?
i am now think of how to get all the output for all the combination
eg.
given : 1234
output = 1234,1243,2143......and so on.....all 24 possible output
if given : 123
output = all 12 output
if given 12345 , all 120 output...
can someone provide me the algorithm or formula for that ?
in my project iam providing users to send sms acrooss india..in admin panel the admin have a feature to check the usersent sms details on the basis of userid.. when admin selects the userid then corresponding send sms details are details are displaying.. my requirement is generating the crystal report for that table..the users are displaying from one table and sent sms details are displaying detaials from another table.. how to generatye crystal report for that..and how to give formula fields in crystal reports
View 1 RepliesI'm doing a report that includes blocks of text. The block of text that is inserted into the report is determined using a formula.
I want to indent the first line (similar to writing a letter) of the text. Can anyone let me know how to program this into the formula. I'm looking for something similar to the Bold (<b>), underline (<u>), or hard return (<BR>) codes that are used with HTML format.
I want to create a computed column in SQL SERVER and set the formula to this
([Category] + '.aspx?ID=' + [Post_ID])
Not working though......what am i missing? Category and Post_ID are current columns in the table
Could anyone please give me some code to generate Check Digit base on LUHN formula. Suppose i pass 15 digit of credit card number then fuction should calculate and generate the Check Digit.I found some link but it is MS SQL function and i tried it work well except if check digit is 0 it will return 1 so i get confused, because some time Check Digit is also 1 so in both cause this function returning 1.http://www.codeproject.com/Tips/120472/SQL-function-to-verify-Check-Digit-of-given-VISA-M.aspxI will appreciate if some one can give me VB code.
View 1 RepliesI have created a following calculated formula in excel, I am quite confused to convert using C#/Asp.net,IF(HOUR([SchDate])+[txtDuration.Text]*8>17,[SchDate]+(24+8+[txtDuration.Text]*8-17)/24,[SchDate]+([txtDuration.Text]*8)/24)
View 1 Replies