Move data from vb.net to angular

I want to move number from vb.net 2012 to angular,
how can i do it?
thanks in advance

Hello, rami.

While we are primarily here to help people with their Free Code Camp progress, we are open to people on other paths, too. Some of what you are asking is pretty trivial in the Free Code Camp context, so you might find that if you’re not getting the instruction and material you need in your current studies, the FCC curriculum will really help you get started. At a modest guess I’d say investing a 4-5 hours working through the curriculum here will really pay off. You can find the curriculum at https://www.freecodecamp.org/learn.

With your current questions, we don’t have enough context to know what you already know or don’t know, so it is impossible to guide you without just telling you the answer (which we won’t do).

It is pretty typical on here for people to share a codepen / repl.it / jsfiddle example of what they have tried so that anyone helping has more of an idea of what help is actually helpful.

Please provide some example of what you’ve tried and I’m sure you’ll get more help.

Happy coding :slight_smile:


the code work, but not exactly what i want,
it open in new tab not new window,
I want to open angular form in separet window,it open in new tab not new window,
I wrote, that, last <li :

<ul style="PADDING: 10px 0px;">
 			<li class="listCats selected"><a href="/Customers/Downloads.aspx">הורדת קבצים</a></li>
			<li class="listCats"><a href="/Customers/DownloadVersions.aspx">הורדת גרסת מערכת</a></li><%--698709--%> <!--Response.Redirect("http://localhost:4200/HargalKriaClient?FirstName=" & FirstName & "&LastName=" & LastName & "&CompanyName=" & companyName)-->
            <li class="listCats"><a href="/Customers/Archive.aspx">ארכיון קבצים</a></li>
			<li class="listCats"><a href="/Customers/Support.aspx">פתיחת קריאה</a></li>
           <%-- <li class="listCats"><a href="http://localhost:4200/HargalKriaClient?FirstName=<%=FirstName%>">פתיחת קריאה</a></li>"good--%>

            <%--<li class="listCats"><a href="http://localhost:4200/HargalKriaClient?FirstName=<%=FirstName%> + &LastName=<%=LastName%> + &CompanyName=<%=CompanyName%>"  target="_blank">פתיחת קריאה - חדש</a></li>--%><!--1005694 good-->
            <li class="listCats"><a href="http://localhost:4200/HargalKriaClient?FirstName=<%=Session("FirstName")%> + &LastName=<%=Session("LastName")%> + &CompanyName=<%=Session("companyName")%>"  target="popup" ,"width=600","height=400">פתיחת קריאה - חדש</a></li><!--1005694 -->
              

</li>
        </ul>

I try also _blank
Help will be appreciated.
rami

aforementioned is mistake

Hello again,

You will need to use javascipt to open a new window. It is not possible to do this with HTML alone.

Add an onclick event to the a tag with this callback:

function popupOpener() {
  window.open('newHTML.html', 
              'newwindow', 
              'width=600,height=400'); 
  return false;
}

You will have to figure out how to pass parameters to the new window…

Hope this helps

PS: For future posts, when you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

Please use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks are not single quotes.