User chobo2 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T06:51:13Zhttp://stackoverflow.com/feeds/user/130015http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1806253/how-to-close-a-form-and-open-a-new-form-up1How to close a form and open a new form up?chobo22009-11-27T00:22:04Z2009-11-27T12:25:57Z
<p>Hi</p>
<p>I am wondering how do I close a form after I open up a new form.</p>
<p>For instance I have a login form and when they login I open a new form up but I want to close the login form down. </p>
<p>So how would I do this?</p>
<p>I am making these forms on windows mobile 6 compact edition. Not sure if it would be different then in windows forms.</p>
http://stackoverflow.com/questions/1807359/so-confused-on-what-version-i-made-my-application-for-and-what-version-my-phone-r0So confused on what version I made my application for and what version my phone runschobo22009-11-27T08:12:31Z2009-11-27T08:15:33Z
<p>Hi</p>
<p>HP iPAQ 110 Classic Handheld. I made an application that uses windows mobile 6.0 professional SDK with .net 3.5 framework.</p>
<p>the phone settings sates</p>
<pre><code>windows mobile 6 classic
CE OS 5.2.1616(Build 181200.0.4.0).
</code></pre>
<p>So why is it when I try to run my application it I get</p>
<blockquote>
<p>MissingMethodException </p>
<p>This application requires a newer
version of the MS .NET compact
framework than the version installed
on this device.</p>
</blockquote>
<p>I also went to there site and got the newest drivers they had(well I think it is the newest).</p>
<p>My version now is 1.01.06</p>
http://stackoverflow.com/questions/1807168/how-to-deploy-a-mobile-6-application-on-a-phone0How to deploy a mobile 6 application on a phone?chobo22009-11-27T06:55:46Z2009-11-27T07:07:02Z
<p>Hi</p>
<p>I have made my application and I want to check it out. I made a Cab file through the smartphone cab setup wizard.</p>
<p>Now I have no clue what to do.</p>
http://stackoverflow.com/questions/1806059/possible-to-render-html-in-a-compact-edtion-mobile-6-phone-form0Possible to render html in a compact edtion mobile 6 phone form?chobo22009-11-26T23:07:30Z2009-11-26T23:18:32Z
<p>Hi</p>
<p>I am wondering does anyone know if it is possible to render html in a mobile 6 form? The only way I can think that may work is the internal web browser control.</p>
<p>I am wondering is there a better way? I am thinking if I go the path of web browser control I will have to generate an html file then insert the code I want into this file.</p>
<p>I need something like this because I am pulling in some text that can possibly be formatted with html stuff such as font weight.</p>
http://stackoverflow.com/questions/1805462/how-to-draw-a-rectangle-in-compact-edtion0How to draw a rectangle in Compact Edtion?chobo22009-11-26T20:10:22Z2009-11-26T20:37:00Z
<p>Hi</p>
<p>I am trying to draw a rectangle on a windows mobile phone.</p>
<ol>
<li>Draw the rectangle</li>
<li>Fill the rectangle with a color</li>
<li>Draw it on to the phone.</li>
<li>Give it a event handler that when a user clicks something happens.</li>
</ol>
<p>I am unsure how do steps 2, 3 and 4. I see that there is a drawing class called rectangle but I don't know how to get it on the form.</p>
<p>I then don't know how I could give it a event handler. I am planning to dynamically make like 12 of these so I have to somehow tell which one is clicked and the color it contains in it.</p>
<p>Thanks</p>
<p>Edit so far I have this but I don't see it on my form.</p>
<pre><code> Graphics surface = this.CreateGraphics();
Pen pen = new Pen(Color.Black, 1f);
System.Drawing.Rectangle test = new Rectangle(0, 0, 500, 500);
surface.DrawRectangle(pen, test);
</code></pre>
http://stackoverflow.com/questions/1794778/where-do-you-store-filessuch-as-images-on-windows-mobile-6-phones0Where do you store files(such as images) on Windows Mobile 6 phones?chobo22009-11-25T05:09:29Z2009-11-26T09:14:50Z
<p>Hi</p>
<p>I want to have a couple images in my phone application. However I don't know where to store them. Like I add them to my VS project but of course the image path is the path on my harddrive.</p>
<p>So is like special folder in windows mobile where I store it. Like if I transfer my application to the phone I am going to have to stick this image somewhere. It also has to be a place where it can't be deleted by the user.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1800062/compact-edtionwindows-mobile-6-datagrid-can-you-add-a-column-for-checkboxes-1Compact Edtion(Windows Mobile 6) Datagrid...Can you add a column for checkboxes?chobo22009-11-25T21:25:25Z2009-11-25T23:32:29Z
<p>Hi</p>
<p>I want to use the dataGrid in the compact framework edition but I need it to have a column that only had check boxes it in it. How can I add this column?</p>
http://stackoverflow.com/questions/1800528/moq-setup-confusion-in-c/1800624#18006240Answer by chobo2 for Moq setup confusion in C#chobo22009-11-25T23:19:00Z2009-11-25T23:19:00Z<p>Hmm</p>
<p>Can you give us like a mini example of code that we can just pop in and run. I tried to take what you had and changed "Thing" to a string object but there is no t.B() that shows up so I don't know if something that you gave in the code has a typo or what. Since it does not show up in intellisene.</p>
<p>Also when I usually do my mocking I usually have a interface and I pass in that interface through my constructor. Like I am not sure how your actually passing this mock object to MyClass.</p>
<p>Since however I seen it you got to pass it in through like property injection, constructor inject or something like that. I never seen it where you don't pass it in or anything like that.</p>
http://stackoverflow.com/questions/1800205/firefox-extension-to-load-website-with-defined-speed-slow-down-internet-conne/1800539#18005390Answer by chobo2 for Firefox Extension to load website with defined speed.... slow down internet connectionchobo22009-11-25T22:59:53Z2009-11-25T22:59:53Z<p>You can use <a href="http://www.dallaway.com/sloppy/" rel="nofollow">http://www.dallaway.com/sloppy/</a> </p>
<p>That way you can use it on every browser since it is a stand along application.</p>
http://stackoverflow.com/questions/1799431/does-mobile-6-phones-generate-a-dll0Does mobile 6 phones generate a .dll?chobo22009-11-25T19:33:42Z2009-11-25T21:38:51Z
<p>Hi</p>
<p>I want to grab the .dll from a mobile phone application I am making since I want to add it to my nunit so I can write & test my application. Yet I don't see any .dll in the bin folder. How do I unit test it?</p>
http://stackoverflow.com/questions/1704775/can-the-dialog-x-be-disabled-from-jquery-ui-1-7-dialog-boxes0Can the Dialog X be disabled from jquery UI 1.7 dialog boxes?chobo22009-11-09T23:59:50Z2009-11-25T21:35:36Z
<p>Hi</p>
<p>When a dialog box pops up there is a "X" in the top right hand corner. I am wondering if there is an option to disable this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1799253/validation-on-a-mobile-6-phone1Validation on a mobile 6 phone?chobo22009-11-25T19:06:07Z2009-11-25T19:39:27Z
<p>Hi</p>
<p>How does one do validation on a mobile 6 phone? Like in asp.net they have like validation controls and in windows forms they have the the "error" control. Yet I don't see any of these in mobile 6.</p>
<p>Like when I write my validation checking if statements and a error is found what do people do? Show a popup message? Or how do they display the validation errors to the user?</p>
http://stackoverflow.com/questions/1791453/how-to-connect-to-an-sqlitece-database-on-a-windows-mobile-phone1How to connect to an SQLite(CE) database on a windows mobile phone?chobo22009-11-24T17:02:31Z2009-11-25T08:27:16Z
<p>Hi</p>
<p>I want to make a database for my mobile 6 cellphone app. What I did was in visual studios I went to my project name and right clicked on it, went to add -> add new item -> data -> choose datafile.</p>
<p>It created a database file called "AppDatabase1.sdf"</p>
<p>Now I want to connect to my database but I don't know how what the connection string is since I see no app.config where I normally would expect it to be.</p>
<p>So I just have</p>
<pre><code> SqlCeConnection conn = new SqlCeConnection("Not sure what to put here");
conn.Open();
</code></pre>
<p>When I click on the server explorer tab I see my database so I click on it. In the properties section it has something labeled "connection string" however it looks like the path to the actual file and when I run it in the emulator I get an error.</p>
<blockquote>
<p>"The database file cannot be found.
Check the path to the database."</p>
</blockquote>
<p>Thanks</p>
http://stackoverflow.com/questions/1695283/getting-a-error-with-jquery-validate-plugin-in-ie-81Getting a Error with Jquery.Validate Plugin in IE 8chobo22009-11-08T03:29:21Z2009-11-24T07:55:13Z
<p>Hi</p>
<p>I don't know what is going but my jquery validate plugin(1.5.5) is not working and I am not sure for how long since I do most of my testing on firefox.</p>
<p>The problem is this I go to one of my forms that jquery validate on it and hit my "create" button my validation kicks in as it should and does this right in all browsers including IE8. Now where it does not work is when I do this.</p>
<p>I choose the first dropdown list and choose something. Then hit "create" now all validation errors should show up expect the one for the first dropdown box.</p>
<p>It does this in all browsers except in IE 8. I get this</p>
<blockquote>
<p>Webpage error details</p>
<p>User Agent: Mozilla/4.0 (compatible;
MSIE 8.0; Windows NT 6.1; Win64; x64;
Trident/4.0; .NET CLR 2.0.50727;
SLCC2; .NET CLR 3.5.30729; .NET CLR
3.0.30729; Media Center PC 6.0; Tablet PC 2.0) Timestamp: Sun, 8 Nov 2009
03:26:08 UTC</p>
<p>Message: Object required Line: 890
Char: 5 Code: 0 URI:
<a href="http://localhost:3668/Scripts/Plugins-Development/jquery.validate.js" rel="nofollow">http://localhost:3668/Scripts/Plugins-Development/jquery.validate.js</a></p>
</blockquote>
<p>This is what is on line 890</p>
<pre><code>return options.length > 0 && ( element.type == "select-multiple" || ($.browser.msie && !(options[0].attributes['value'].specified) ? options[0].text : options[0].value).length > 0);
</code></pre>
<p>This like the whole method block.</p>
<pre><code>methods: {
// http://docs.jquery.com/Plugins/Validation/Methods/required
required: function(value, element, param) {
// check if dependency is met
if ( !this.depend(param, element) )
return "dependency-mismatch";
switch( element.nodeName.toLowerCase() ) {
case 'select':
var options = $("option:selected", element);
return options.length > 0 && ( element.type == "select-multiple" || ($.browser.msie && !(options[0].attributes['value'].specified) ? options[0].text : options[0].value).length > 0);
case 'input':
if ( this.checkable(element) )
return this.getLength(value, element) > 0;
default:
return $.trim(value).length > 0;
}
},
</code></pre>
<p>Not sure what is going on.</p>
http://stackoverflow.com/questions/1787696/why-use-string-concat-in-c1Why use String.Concat() in C#?chobo22009-11-24T04:03:16Z2009-11-24T06:31:00Z
<p>Hi</p>
<p>I been wondering this for a while. Why use String.Concat() instead of using the plus operator. I understand the String.Format since it a voids using the plus operator and make your code looker nicer.</p>
<p>like for example</p>
<pre><code>string one = "bob";
string two = "jim";
string three = one + two;
string three = String.Concat(one,two);
</code></pre>
http://stackoverflow.com/questions/1785260/how-to-do-authentication-between-a-webservice-and-a-mobile-phone2How to do Authentication between a webservice and a mobile phone?chobo22009-11-23T19:02:11Z2009-11-23T20:09:27Z
<p>Hi</p>
<p>I want to make a windows mobile 6 cellphone application. This application will talk to a web service that I want to make. </p>
<p>I don't know must about web services and programming app for phones so I got a couple questions.</p>
<ol>
<li><p>How do I do authentication? Like my user loads up my app and goes to the login page. They type in there credentials. This gets sent to the server and authenticated. Now what do I send back? Is there some sort of FormsAuthentication?</p></li>
<li><p>After they log in do I have to keep doing checks to see if they are logged in? Like in asp.net mvc I have AuthorizeAttributes on all my tags. That way no one can just type in the url to that action method and be able to access it. But since this is a application I not sure if they could say go your login form(first form) and then somehow without logging in get to your main form(the one after the login form).</p></li>
<li><p>Do web services have Authorize tags like asp.net mvc? Since I probably need something along those lines to ensure no one types in their web brower my webservice path and get access to all those methods I made in it.</p></li>
<li><p>I am making a asp.net mvc application right now and when the user types there credentials on my site. It is sent what I am guessing is clear text? to the server hashed and then checked. I know maybe one day when I can afford it maybe to get ssl to make it more secure.</p></li>
</ol>
<p>So my question how about with sending the credentials from the phone to the server will it be less secure then what I have for my website right now? About the same? What can be done to make it more secure(is it SSL again?).</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1779741/how-to-make-a-select-list-item-selected-in-asp-net-mvc1How to make a select list item selected in asp.net mvc?chobo22009-11-22T19:44:59Z2009-11-22T21:03:55Z
<p>Hi</p>
<p>I have the following code but it never selects the value I want. </p>
<pre><code> List<SelectListItem> list = new List<SelectListItem>();
SelectListItem one = new SelectListItem() { Text = "MyTest", Value = "MyTest"};
SelectListItem two= new SelectListItem() { Text = "Test2", Value = "Test2" };
if (id == "MyTest")
{
one .Selected = true;
}
else
{
two.Selected = true;
}
list.Add(one);
list.Add(two);
ViewData["DDL"] = new SelectList(list, "value", "text");
</code></pre>
<p>So I am not sure what I am doing wrong</p>
<p>in my view I have</p>
<pre><code><%= Html.DropDownList("DDL") %>
</code></pre>
http://stackoverflow.com/questions/1778061/how-to-detect-different-user-settings-javascript-enabled-cookies-enabled0How to detect different user settings? Javascript enabled, Cookies enabledchobo22009-11-22T07:04:20Z2009-11-22T12:44:49Z
<p>Hi</p>
<p>I am wondering how do I first detect if Javascript is enabled/disabled. Disabling javascript on this site revealed that stackoverflow uses something called the tag.</p>
<p>Is this like the standard way of doing it? Does it work on all the browsers?Which browser versions does it not work on(ie IE6)?.</p>
<p>Do I just stick in the body or the head of my html page? I saw one site tutorial that stuck it in the head but Visual Studios said that is not XHtml complaint. </p>
<p>Next how do I check if cookies are enabled? Do you do use javascript to figure this out? Or do you use server side? Is there something that works that works on all major browsers or maybe something in jquery that does this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1774787/ah-getting-so-confused-with-service-layers1Ah getting so confused with service layerschobo22009-11-21T07:05:09Z2009-11-21T09:30:01Z
<p>Hi</p>
<p>Service layers and repository seem so simple on paper but I am getting myself confused.</p>
<p>So here is what I am confused about. I have a service layer for my PayPal service layer with validation logic relating to my PayPal stuff and methods that connect to my paypal repository and return results (and do more logic if needed).</p>
<p>Now on my signin page I need to run some checks to see if the user subscription has expired or not. So I got to check some of my PayPal tables.</p>
<p>Now do I put this logic in the PayPal service layer? Or my sigin service layer?</p>
<p>I am not sure which one is the most appropriate place to put it.</p>
http://stackoverflow.com/questions/1773825/how-do-you-return-something-in-a-actionfilterattribute0How do you return something in a ActionFilterAttribute?chobo22009-11-20T23:20:16Z2009-11-20T23:32:31Z
<p>Hi</p>
<p>I am trying to use the ActionFilterAttribute in asp.net mvc. What I want to do is check if the users subscription is expired if it is I want to redirect the user to a page if not then do nothing.</p>
<p>But the methods that you can override are all void. So how do I do this? Like I don't even know how to unit test it either since it is void.</p>
<pre><code>public override void OnActionExecuting(ActionExecutingContext filterContext)
</code></pre>
http://stackoverflow.com/questions/1772822/how-to-make-my-own-attribute-tag1How to make my own Attribute tag?chobo22009-11-20T19:48:54Z2009-11-20T21:29:43Z
<p>Hi</p>
<p>I am using asp.net mvc 1.0. I know asp.net mvc has a couple attribute classes such as "AuthorizeAttribute", ActionFilter? and I think there is like 2 more.</p>
<p>So I have made my own AuthorizeAttribute but I am not sure if this is the right one to use again or if I even need to inherit any of these built in classes.</p>
<p>What I am trying to do this is. Every time a user hits an action method I want to check if there subscription length has expired. If it has return them to the page to buy a new subscription otherwise let them go on their way.</p>
<p>I don't want to add this to my Custom AuthorizeAttribute because I have one plan that is free and thus does not need this. So I was thinking of having another sort of tag like this and put it under the AuthorizeAttribute this way if they are not authorized they get caught by that one. If they are but there subscription they get caught by the new one.</p>
<p>So how should I go out building this? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1768061/how-to-clear-fields-after-post-back-in-asp-net-mvc0How to clear fields after post back in asp.net mvc?chobo22009-11-20T03:03:43Z2009-11-20T04:08:02Z
<p>Hi</p>
<p>I am wondering how do I clear fields after a postback in asp.net mvc? Like right now when validation errors occur the fields stay populated with whatever a user would entered. This is fine however, when no validation errors occur I want the all the fields to clear and a message to display.</p>
<p>So right now I have the success displaying by using ViewData but not sure how to get the fields to clear.</p>
http://stackoverflow.com/questions/1540176/my-subversion-keeps-excluding-my-files0My Subversion keeps excluding my fileschobo22009-10-08T20:21:32Z2009-11-20T03:08:06Z
<p>Hi</p>
<p>Every time I checkout my site from my repository. I notice most of my files that I have are excluded. So I have to go hunt down every file and include it in the project. This is very annoying.</p>
<p>I am using Subversion and tortiseSVN for windows.</p>
<p>What do I need to do to stop this?</p>
http://stackoverflow.com/questions/1765839/how-can-i-send-data-to-server/1768001#17680010Answer by chobo2 for how can i send data to server ... chobo22009-11-20T02:47:06Z2009-11-20T02:47:06Z<p>Say you have a controller called HomeController and a actionResult called Index that loads up the index page and another actionResult called SaveData(string data)</p>
<p>Now in the index page you would write your script</p>
<pre><code>$(function()
{
var data = // get data.
$.post('SaveData',{ sendingData: data}, function(response)
{
alert(response);
});
});
public ActionResult SaveData(string sendingData)
{
// do somethig with the data
}
</code></pre>
<p>Thats all to it. No more making generic handlers or a webserver for each ajax request.</p>
http://stackoverflow.com/questions/1677307/jquery-ui-tabs-abort-does-not-work1Jquery UI tabs abort does not work.chobo22009-11-04T23:07:40Z2009-11-19T16:19:17Z
<p>Hi</p>
<p>I have a jquery ui 1.7 tab and I am trying to "abort" the request.</p>
<p>so I have this in my document rdy.</p>
<pre><code> $.ajaxSetup(
{
'timeout': 10000,
'error': function errorCallback()
{
jAlert('The server is acting a bit slow. Your request has timed out. Please try again.', 'Server Time Out Error.');
$('#tabs').tabs('abort');
}
});
$("#tabs").tabs();
</code></pre>
<p>However when looking my ajax requests with firebug the requests are not terminated. They keep on running. </p>
<p>I see the alert box so I know it is timing out but the request still keeps on going.</p>
<p>Edit</p>
<p>I just don't know why this is happening. Like when a tab gets loaded up it goes to my server and that method always returns a partial view. So I am not sure if is the fact that it is a partial view or not screwing up. It just seems like the request still is trying to go even though I am trying to "abort" it.</p>
http://stackoverflow.com/questions/1760225/where-should-you-unit-test-your-validation2Where should you unit test your validation?chobo22009-11-19T00:54:49Z2009-11-19T01:53:02Z
<p>Hi</p>
<p>This is bothering me for some time now. I put all my validation in a service layer. However when I unit test I usually pass everything through action method. Then that goes into my service layer what contains the validation.</p>
<p>So I am not sure now if that is the best way to do it. Since usually they say you should just test that method.</p>
<p>So what do you guys think?</p>
http://stackoverflow.com/questions/1218284/how-to-extend-membership-in-asp-net1How to Extend Membership in Asp.net ?chobo22009-08-02T06:25:32Z2009-11-17T17:58:53Z
<p>Hi</p>
<p>I am wondering how do I extend the membership stuff in asp.net?</p>
<p>When a user logs in I want to check the UserName and Password. Of course the standard asp.net membership does this(this it is ValidateUser()).</p>
<p>I also want to check another field called "institution". If a user types something in this box I want to verify if the "institution", "userName" and "password" match what is in the database.</p>
<p>If a user leaves the "institution" blank then I just want to use it default ValidateUser() method that is provided in asp.net and check only "userName" and "password".</p>
<p>So can I overload the ValdiateUser() method? Or will I have to write my own one to handle this new case?</p>
<p>Where would I store this "institution" field in the database? I heard something about people recommending the "Profile" table but I am not sure.</p>
<p>Also how can I change the membership to treat these as 3 different users</p>
<p>Institution: ABC
UserName: A09410515
Password: 1234567</p>
<p>Institution: GHA
UserName: A09410515
Password: 1234567</p>
<p>UserName: A09410515
Password: 1234567</p>
<p>So as my database should be concerned these should be 3 unique users. Of course in the case that my database already would have the same information stored in it.</p>
<p>For example.</p>
<p>Institution: ABC
UserName: A09410515
Password: 1234567</p>
<p>and someone tries to sign up with the exact same information for "UserName" and "Institution" then it would spit back an error about being duplicate names.</p>
http://stackoverflow.com/questions/1517623/internet-explorer-8-64bit-and-selenium-not-working3Internet Explorer 8 64bit and Selenium Not working.chobo22009-10-04T22:55:06Z2009-11-17T17:39:15Z
<p>I am trying to get selenium tests to run. Yet every time I try to run a tests that should run IE I get a error on line 863 of htmlutils.js It says that I should disable my popup blocker. The thing is I went to IE tools-> turn of popup block.</p>
<p>So it is disabled and I get this error.</p>
<p>Is there something else I need to disable. I actually don't even know what version of Internet explorer it is running since I am using Windows 7 Pro 64bit version. So when I do use IE I use 64bit version but I am under the understanding if the site or something like that does not support 64bit it goes to 32bit.</p>
<p>So not sure what I need to do it to make it work.</p>
<p>This is the lines where it does</p>
<pre><code>function openSeparateApplicationWindow(url, suppressMozillaWarning) {
// resize the Selenium window itself
window.resizeTo(1200, 500);
window.moveTo(window.screenX, 0);
var appWindow = window.open(url + '?start=true', 'selenium_main_app_window');
if (appWindow == null) {
var errorMessage = "Couldn't open app window; is the pop-up blocker enabled?"
LOG.error(errorMessage);
throw new Error("Couldn't open app window; is the pop-up blocker enabled?");
}
</code></pre>
<p>Where is this log.error message stored? Maybe I can post that too.</p>
http://stackoverflow.com/questions/1747007/what-am-i-doing-wrong-with-my-regex0What am I doing wrong with my Regex?chobo22009-11-17T06:40:58Z2009-11-17T11:30:38Z
<p>Hi</p>
<p>I am not sure what I am doing wrong. I am trying to use the asp.net regex.replace but it keeps replacing the wrong item.</p>
<p>I have 2 replaces. The first one does what I want it to it replaces what I want. The next replace that is almost a mirror image does not replace what I want. </p>
<p>So this is my sample code</p>
<pre><code><%@ Page Title="Tour" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
<title>Website Portfolio Section - VisionWebCS</title>
<meta name="description" content="A" />
<meta name="keywords" content="B" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<!-- **START** -->
</code></pre>
<p>I am looking to replace both the meta tags.</p>
<pre><code><meta name=\"description\" content=\"A\" />
<meta name=\"keywords\" content=\"B\" />
</code></pre>
<p>In my code first I replace the keywords meta tag with</p>
<pre><code><meta name=\"keywords\" content=\"C\" />
</code></pre>
<p>This works so my next task is to replace the description meta tag with this</p>
<pre><code><meta name=\"description\" content=\"D\" />
</code></pre>
<p>This does not work instead it replaces the "keywords" meta tag and then replaces the "description" tag.</p>
<p>Here is my test program so you all can try it out. Just through it in C# console app. </p>
<pre><code> private const string META_DESCRIPTION_REGEX = "<\\s* meta \\s* name=\"description\" \\s* content=\"(?<Description>.*)\" \\s* />";
private const string META_KEYWORDS_REGEX = "<\\s* meta \\s* name=\"keywords\" \\s* content=\"(?<Keywords>.*)\" \\s* />";
private static RegexOptions regexOptions = RegexOptions.IgnoreCase
| RegexOptions.Multiline
| RegexOptions.CultureInvariant
| RegexOptions.IgnorePatternWhitespace
| RegexOptions.Compiled;
static void Main(string[] args)
{
string text = "<%@ Page Title=\"Tour\" Language=\"C#\" MasterPageFile=\"~/Views/Shared/Site.Master\" Inherits=\"System.Web.Mvc.ViewPage\" %><asp:Content ID=\"Content1\" ContentPlaceHolderID=\"HeadContent\" runat=\"server\"> <title>Website Portfolio Section - VisionWebCS</title> <meta name=\"description\" content=\"A\" /> <meta name=\"keywords\" content=\"B\" /></asp:Content><asp:Content ID=\"Content2\" ContentPlaceHolderID=\"MainContent\" runat=\"server\"><!-- **START** -->";
Regex regex = new Regex(META_KEYWORDS_REGEX, regexOptions);
string newKeywords = String.Format("<meta name=\"keywords\" content=\"{0}\" />", "C");
string output = regex.Replace(text, newKeywords);
Regex regex2 = new Regex(META_DESCRIPTION_REGEX, regexOptions);
string newDescription = String.Format("<meta name=\"description\" content=\"{0}\" />", "D");
string newOutput = regex2.Replace(output, newDescription);
Console.WriteLine(newOutput);
}
</code></pre>
<p>This gets me a final output of</p>
<pre><code><%@ Page Title="Tour" Language="C#" MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="Content1" ContentPlaceHold erID="HeadContent" runat="server">
<title>Website Portfolio Section - VisionW
ebCS</title>
<meta name="description" content="D" />
</asp:Content>
<asp:Conten t ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<!-- **START**
-->
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1746092/do-i-need-to-reset-a-streamc-back-to-the-start0Do I need to reset a stream(C#) back to the start?chobo22009-11-17T01:48:24Z2009-11-17T03:16:19Z
<p>Hi</p>
<p>I don't know too much about streams in C#. Right now I have a stream that I put into a stream reader and read it. Later on in some other method I need to read the stream(same stream object) but this time I get this error</p>
<pre><code>System.ArgumentException was unhandled by user code
Message="Stream was not readable."
Source="mscorlib"
StackTrace:
at System.IO.StreamReader..ctor(Stream stream, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize)
at System.IO.StreamReader..ctor(Stream stream)
at ExtractTitle(Stream file) in :line 33
at GrabWebPage(String webPath) in :line 62
at lambda_method(ExecutionScope , ControllerBase , Object[] )
at System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters)
at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClassa.<InvokeActionMethodWithFilters>b__7()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation)
InnerException:
</code></pre>
<p>So I am thinking maybe by reading the stream it goes to the end. Then when I try to read it again it is at the end of the stream and thats why I am getting this error.</p>
<p>So can anyone shed some light on this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1807359/so-confused-on-what-version-i-made-my-application-for-and-what-version-my-phone-r/1807371#1807371Comment by chobo2 on So confused on what version I made my application for and what version my phone runschobo22009-11-27T17:38:00Z2009-11-27T17:38:00ZHmm I downloaded that I connected my device to my computer as it says to do. I then doubled clicked the .msi and when it started to install it asked me if I wanted to remove or repair the it since it is installed on my computer already. So it wanted to like reinstall over the one in my computer not anything with the phonehttp://stackoverflow.com/questions/1807168/how-to-deploy-a-mobile-6-application-on-a-phone/1807193#1807193Comment by chobo2 on How to deploy a mobile 6 application on a phone?chobo22009-11-27T07:13:34Z2009-11-27T07:13:34ZThanks done that but now it says my phone is not the right version. It is Hp PAQ 110 Classic. I built my with the 6.0 Professional SDK. Can I upgrade my device to whatever version it needs(the settings say it has 6.0 on it but must not be the same version).http://stackoverflow.com/questions/1806253/how-to-close-a-form-and-open-a-new-form-up/1806271#1806271Comment by chobo2 on How to close a form and open a new form up?chobo22009-11-27T01:35:58Z2009-11-27T01:35:58ZHow about if it is not a main form? Like I if I do this -> Login -> Second Form -> Third form. Can I at least close the second form?http://stackoverflow.com/questions/1794778/where-do-you-store-filessuch-as-images-on-windows-mobile-6-phones/1794979#1794979Comment by chobo2 on Where do you store files(such as images) on Windows Mobile 6 phones?chobo22009-11-26T18:56:32Z2009-11-26T18:56:32ZSo what do I do? When you say deployed do you mean the on the phone? Or do yo mean I make this in VS? If I am just testing it on the emulator then where do Is stick the files so that path you gave would work? Also this cab file it create a folder and then you choose where it should install?http://stackoverflow.com/questions/1785260/how-to-do-authentication-between-a-webservice-and-a-mobile-phone/1785620#1785620Comment by chobo2 on How to do Authentication between a webservice and a mobile phone?chobo22009-11-26T18:46:28Z2009-11-26T18:46:28ZHmm I think I understand but is there any tutorial on this?http://stackoverflow.com/questions/1799431/does-mobile-6-phones-generate-a-dll/1800006#1800006Comment by chobo2 on Does mobile 6 phones generate a .dll?chobo22009-11-25T21:23:10Z2009-11-25T21:23:10ZI see. So what do I do if I want to unit test my phone application then?http://stackoverflow.com/questions/1785260/how-to-do-authentication-between-a-webservice-and-a-mobile-phone/1785620#1785620Comment by chobo2 on How to do Authentication between a webservice and a mobile phone?chobo22009-11-25T20:37:49Z2009-11-25T20:37:49ZWhats an authentication token? How do I generate it? What happens if I wanted to add a role check to this authentication. Like I have 3 roles and some methods can only be used by certain roles. So I would have to check for that too.http://stackoverflow.com/questions/1799253/validation-on-a-mobile-6-phone/1799333#1799333Comment by chobo2 on Validation on a mobile 6 phone?chobo22009-11-25T20:30:28Z2009-11-25T20:30:28ZYa I was thinking of a label but I just don't have enough room to show validation errors due the limited space so I guess popup is the only option.http://stackoverflow.com/questions/1799431/does-mobile-6-phones-generate-a-dllComment by chobo2 on Does mobile 6 phones generate a .dll?chobo22009-11-25T20:15:51Z2009-11-25T20:15:51ZLike I have only 2 things in my bin folder -> debug folder. Application and Program debug database.http://stackoverflow.com/questions/1799253/validation-on-a-mobile-6-phone/1799333#1799333Comment by chobo2 on Validation on a mobile 6 phone?chobo22009-11-25T20:13:32Z2009-11-25T20:13:32Zand what kind of control would I use to display the errors to the user?http://stackoverflow.com/questions/1799431/does-mobile-6-phones-generate-a-dllComment by chobo2 on Does mobile 6 phones generate a .dll?chobo22009-11-25T20:02:25Z2009-11-25T20:02:25ZI just have one project in my solution. I am making an simple application with a couple textboxes that will connect to a web service.http://stackoverflow.com/questions/1799253/validation-on-a-mobile-6-phone/1799333#1799333Comment by chobo2 on Validation on a mobile 6 phone?chobo22009-11-25T19:24:18Z2009-11-25T19:24:18ZHow would I do that? No 3rd party ones already?http://stackoverflow.com/questions/1794778/where-do-you-store-filessuch-as-images-on-windows-mobile-6-phones/1794979#1794979Comment by chobo2 on Where do you store files(such as images) on Windows Mobile 6 phones?chobo22009-11-25T19:13:16Z2009-11-25T19:13:16ZIs there some disadvantage to use the resource way? Also would you have come up with the same way as "ZHZ" for keeping it in the programme files? Or is what he have another way to do it?http://stackoverflow.com/questions/1794778/where-do-you-store-filessuch-as-images-on-windows-mobile-6-phones/1794979#1794979Comment by chobo2 on Where do you store files(such as images) on Windows Mobile 6 phones?chobo22009-11-25T06:14:28Z2009-11-25T06:14:28ZHow do I do either one of these? Like I don't see a program file(unless I launch the emulator). So do I make a folder in VS and call it program file? I am not sure how to add them as resources either.http://stackoverflow.com/questions/1791453/how-to-connect-to-an-sqlitece-database-on-a-windows-mobile-phone/1791495#1791495Comment by chobo2 on How to connect to an SQLite(CE) database on a windows mobile phone?chobo22009-11-25T00:31:52Z2009-11-25T00:31:52ZI don't know I can't get it to work. Is it possible for you to make a sample program. I tried the direct path to the actual database, I tried what you had above. The only way I can get it to work is if I use like a dataset control but I can't find the connection string it makes so I could use it.